diff options
Diffstat (limited to 'core/conf/rc.d/distccd')
-rwxr-xr-x | core/conf/rc.d/distccd | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/core/conf/rc.d/distccd b/core/conf/rc.d/distccd deleted file mode 100755 index 65a166d..0000000 --- a/core/conf/rc.d/distccd +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env bash -# -# /etc/rc.d/distccd: start/stop distcc daemon -# - -. /etc/distcc.conf -if [ -z "$DISTCC_ALLOW" ]; then - echo "Please define a range of IPs allowed to connect to this distccd" - echo "host in DISTCC_ALLOW in /etc/rc.conf. More detailed information" - echo "can be found in the distcc's README package." - exit 1 -fi - -DISTCC_USER="${DISTCC_USER:=nobody}" -DISTCC_LOG_LEVEL="${DISTCC_LOG_LEVEL:=notice}" - -case $1 in -start) - /usr/sbin/distccd --daemon --user "$DISTCC_USER" --allow "$DISTCC_ALLOW" --log-level "$DISTCC_LOG_LEVEL" - ;; -stop) - killall -q /usr/sbin/distccd - ;; -restart) - $0 stop - $0 start - ;; -*) - echo "usage: $0 [start|stop|restart]" - ;; -esac - -# End of file |