mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
9cbba79744
a/etc-15.0-x86_64-8.txz: Rebuilt. /etc/passwd: Added icecc (UID 49). /etc/group: Added icecc (GID 49). a/pciutils-3.6.2-x86_64-1.txz: Upgraded. a/sysvinit-scripts-2.1-noarch-17.txz: Rebuilt. rc.M: start rc.icecc-scheduler and rc.iceccd. d/icecream-1.1-x86_64-1.txz: Added. Thanks to Heinz Wiesinger for the SBo reference build script. n/libmbim-1.16.2-x86_64-1.txz: Upgraded. n/libqmi-1.20.2-x86_64-1.txz: Upgraded. n/p11-kit-0.23.13-x86_64-1.txz: Upgraded. x/xterm-334-x86_64-1.txz: Upgraded.
43 lines
902 B
Bash
43 lines
902 B
Bash
#!/bin/sh
|
|
# Start/stop/restart scheduler.
|
|
# $Id: rc.scheduler,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 scheduler:
|
|
scheduler_start() {
|
|
if [ -x /usr/sbin/icecc-scheduler ]; then
|
|
echo "Starting distributed compiler scheduler: /usr/sbin/icecc-scheduler $ICECC_SCHEDULER_OPTIONS"
|
|
/usr/sbin/icecc-scheduler $ICECC_SCHEDULER_OPTIONS
|
|
fi
|
|
}
|
|
|
|
# Stop scheduler:
|
|
scheduler_stop() {
|
|
echo "Stopping icecc-scheduler."
|
|
killall icecc-scheduler
|
|
}
|
|
|
|
# Restart scheduler:
|
|
scheduler_restart() {
|
|
scheduler_stop
|
|
sleep 1
|
|
scheduler_start
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
scheduler_start
|
|
;;
|
|
'stop')
|
|
scheduler_stop
|
|
;;
|
|
'restart')
|
|
scheduler_restart
|
|
;;
|
|
*)
|
|
echo "usage $0 start|stop|restart"
|
|
esac
|