summaryrefslogtreecommitdiffstats
path: root/source/d/icecream/rc.icecc-scheduler
diff options
context:
space:
mode:
Diffstat (limited to 'source/d/icecream/rc.icecc-scheduler')
-rw-r--r--source/d/icecream/rc.icecc-scheduler43
1 files changed, 43 insertions, 0 deletions
diff --git a/source/d/icecream/rc.icecc-scheduler b/source/d/icecream/rc.icecc-scheduler
new file mode 100644
index 000000000..b407f26e7
--- /dev/null
+++ b/source/d/icecream/rc.icecc-scheduler
@@ -0,0 +1,43 @@
+#!/bin/sh
+# Start/stop/restart scheduler.
+# $Id: rc.scheduler,v 1.0 2009/04/18
+# Author: Heinz Wiesinger <pprkut@liwjatan.at>
+# ---------------------------------------------------------------------------
+
+# Get the configuration information from /etc/rc.d/rc.icecream.conf:
+. /etc/rc.d/rc.icecream.conf
+
+# Start scheduler:
+scheduler_start() {
+ if [ -x /usr/sbin/icecc-scheduler ]; then
+ echo "Starting distributed compiler scheduler: /usr/sbin/icecc-scheduler $ICECC_SCHEDULER_OPTIONS"
+ /usr/sbin/icecc-scheduler $ICECC_SCHEDULER_OPTIONS
+ fi
+}
+
+# Stop scheduler:
+scheduler_stop() {
+ echo "Stopping icecc-scheduler."
+ killall icecc-scheduler
+}
+
+# Restart scheduler:
+scheduler_restart() {
+ scheduler_stop
+ sleep 1
+ scheduler_start
+}
+
+case "$1" in
+'start')
+ scheduler_start
+ ;;
+'stop')
+ scheduler_stop
+ ;;
+'restart')
+ scheduler_restart
+ ;;
+*)
+ echo "usage $0 start|stop|restart"
+esac