blob: 633661bebe69231dcb5dc265126f308df2a5225d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/sh
# Start/stop/restart scheduler.
# $Id: rc.scheduler,v 1.0 2009/04/18
# Author: Heinz Wiesinger <pprkut@liwjatan.at>
# ---------------------------------------------------------------------------
PID=$(/sbin/pidof -o %PPID icecc-scheduler)
# Get the configuration information from /etc/rc.d/rc.icecream.conf:
. /etc/rc.d/rc.icecream.conf
# Start scheduler:
scheduler_start() {
if [ -n "$PID" ]; then
echo "Distributed compiler scheduler already running"
exit
fi
if [ -x /usr/sbin/icecc-scheduler ]; then
echo "Starting distributed compiler scheduler: /usr/sbin/icecc-scheduler "
/usr/sbin/icecc-scheduler -n $NETWORK -d -u icecream \
-l /var/log/icecream/icecc-scheduler.log
fi
}
# Stop scheduler:
scheduler_stop() {
echo "Stopping distributed compiler scheduler"
killall icecc-scheduler 1> /dev/null 2> /dev/null
}
# 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
|