summaryrefslogtreecommitdiffstats
path: root/development/icecream/rc.iceccd
diff options
context:
space:
mode:
author Heinz Wiesinger2010-05-13 00:57:55 +0200
committer Robby Workman2010-05-13 00:57:55 +0200
commit50d2a8aa6ee50fd0b9c41ce3effda353ba6f68d1 (patch)
treedb460257e009b8b98dda8bd9585dddcb982a8b8b /development/icecream/rc.iceccd
parentb32ef8faabe0777a324c1559dcff39e22d8be909 (diff)
downloadslackbuilds-50d2a8aa6ee50fd0b9c41ce3effda353ba6f68d1.tar.gz
development/icecream: Added to 13.0 repository
Diffstat (limited to 'development/icecream/rc.iceccd')
-rw-r--r--development/icecream/rc.iceccd49
1 files changed, 49 insertions, 0 deletions
diff --git a/development/icecream/rc.iceccd b/development/icecream/rc.iceccd
new file mode 100644
index 0000000000..c3b5e1f86e
--- /dev/null
+++ b/development/icecream/rc.iceccd
@@ -0,0 +1,49 @@
+#!/bin/sh
+# Start/stop/restart iceccd.
+# $Id: rc.iceccd,v 1.0 2009/04/18
+# Author: Heinz Wiesinger <pprkut@liwjatan.at>
+# ---------------------------------------------------------------------------
+
+PID=$(/sbin/pidof -o %PPID iceccd)
+
+# Get the configuration information from /etc/rc.d/rc.icecream.conf:
+. /etc/rc.d/rc.icecream.conf
+
+# Start iceccd:
+iceccd_start() {
+ if [ -n "$PID" ]; then
+ echo "Distributed compiler daemon already running"
+ exit
+ fi
+ if [ -x /usr/sbin/iceccd ]; then
+ echo "Starting distributed compiler daemon: /usr/sbin/iceccd "
+ /usr/sbin/iceccd -n $NETWORK -d
+ fi
+}
+
+# Stop iceccd:
+iceccd_stop() {
+ echo "Stopping distributed compiler daemon"
+ killall iceccd 1> /dev/null 2> /dev/null
+}
+
+# Restart iceccd:
+iceccd_restart() {
+ iceccd_stop
+ sleep 1
+ iceccd_start
+}
+
+case "$1" in
+'start')
+ iceccd_start
+ ;;
+'stop')
+ iceccd_stop
+ ;;
+'restart')
+ iceccd_restart
+ ;;
+*)
+ echo "usage $0 start|stop|restart"
+esac