summaryrefslogtreecommitdiff
path: root/~fauno/distccd-zeroconf/distccd
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-06-22 23:03:32 +0000
committerroot <root@rshg047.dnsready.net>2011-06-22 23:03:32 +0000
commit7347bb994a41d021c83e97b503f577f2399302e7 (patch)
treefd148755348d31a3f7069526f91796c12ba7a2f5 /~fauno/distccd-zeroconf/distccd
parent17dec629d8a13d1981d734ddc703efb5382ca309 (diff)
Wed Jun 22 23:03:32 UTC 2011
Diffstat (limited to '~fauno/distccd-zeroconf/distccd')
-rwxr-xr-x~fauno/distccd-zeroconf/distccd38
1 files changed, 38 insertions, 0 deletions
diff --git a/~fauno/distccd-zeroconf/distccd b/~fauno/distccd-zeroconf/distccd
new file mode 100755
index 000000000..4702d6820
--- /dev/null
+++ b/~fauno/distccd-zeroconf/distccd
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+[ -f /etc/conf.d/distccd ] && . /etc/conf.d/distccd
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+PID=`pidof -o %PPID /usr/bin/distccd`
+case "$1" in
+ start)
+ stat_busy "Starting distcc Daemon"
+ [ -z "$PID" ] && /usr/bin/distccd --daemon ${DISTCC_ARGS}
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ add_daemon distccd
+ stat_done
+ fi
+ ;;
+ stop)
+ stat_busy "Stopping distcc Daemon"
+ [ ! -z "$PID" ] && kill $PID &> /dev/null
+ if [ $? -gt 0 ]; then
+ stat_fail
+ else
+ rm_daemon distccd
+ stat_done
+ fi
+ ;;
+ restart)
+ $0 stop
+ sleep 1
+ $0 start
+ ;;
+ *)
+ echo "usage: $0 {start|stop|restart}"
+esac
+exit 0