2018-08-14 02:10:54 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# Start/stop/restart iceccd.
|
|
|
|
# $Id: rc.iceccd,v 1.0 2009/04/18
|
|
|
|
# Author: Heinz Wiesinger <pprkut@liwjatan.at>
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Get the configuration information from /etc/rc.d/rc.icecream.conf:
|
|
|
|
. /etc/rc.d/rc.icecream.conf
|
|
|
|
|
|
|
|
# Start iceccd:
|
|
|
|
iceccd_start() {
|
|
|
|
if [ -x /usr/sbin/iceccd ]; then
|
2018-09-21 20:51:07 +02:00
|
|
|
echo "Starting distributed compiler daemon: /usr/sbin/iceccd $ICECCD_OPTIONS $ICECCD_JOBS $ICECCD_NICENESS $ICECCD_EXTRA_OPTIONS"
|
|
|
|
/usr/sbin/iceccd $ICECCD_OPTIONS $ICECCD_JOBS $ICECCD_NICENESS $ICECCD_EXTRA_OPTIONS
|
2018-08-14 02:10:54 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Stop iceccd:
|
|
|
|
iceccd_stop() {
|
|
|
|
echo "Stopping iceccd."
|
|
|
|
killall iceccd
|
|
|
|
}
|
|
|
|
|
|
|
|
# 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
|