You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
671 B
32 lines
671 B
#!/sbin/openrc-run
|
|
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
depend() {
|
|
need net
|
|
use avahi-daemon ypbind
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting distccd"
|
|
|
|
if [ ! -e /var/run/distccd ] ; then
|
|
mkdir -p /var/run/distccd
|
|
chown distcc:daemon /var/run/distccd
|
|
fi
|
|
|
|
# Load PATH and GCC_SPECS from gcc-config, bug #262773
|
|
eval "$(gcc-config -E)"
|
|
|
|
start-stop-daemon --start --quiet --exec "${DISTCCD_EXEC}" --user distcc -- \
|
|
--daemon --pid-file "${DISTCCD_PIDFILE}" \
|
|
${DISTCCD_OPTS}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping distccd"
|
|
start-stop-daemon --stop --quiet --pidfile "${DISTCCD_PIDFILE}"
|
|
eend $?
|
|
}
|