diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-06-23 01:23:59 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-06-23 01:23:59 -0300 |
commit | 0362923a952fcd3cddef1cc922eea74bcf42c9cf (patch) | |
tree | a3d66f3b86aaedfd8348c9b4a01528d9f9d454ba /~fauno/distccd-zeroconf/distccd | |
parent | 2a513fc047e9cc6f3daaefa1494f0cca583187f4 (diff) | |
parent | bc42c16bdd4b5448c3f311637da8ad1f3c2b96cd (diff) |
Merge branch 'master' of ssh://vparabola/srv/git/projects/abslibre
Diffstat (limited to '~fauno/distccd-zeroconf/distccd')
-rwxr-xr-x | ~fauno/distccd-zeroconf/distccd | 38 |
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 |