summaryrefslogtreecommitdiffstats
path: root/development/icecream/rc.icecc-scheduler
diff options
context:
space:
mode:
author Matteo Bernardini2018-09-22 08:05:57 +0200
committer Matteo Bernardini2018-09-22 08:05:57 +0200
commitc2409cd065615c87628c139ae1363a1a8c74ed46 (patch)
tree377e15a0c84c297e32488f0a3f9a02b51923a226 /development/icecream/rc.icecc-scheduler
parent9244da3a67d16848cc6d7adcd82971b8d6c24274 (diff)
downloadslackbuilds-current-20180922.1.tar.gz
20180922.1 global branch merge.current-20180922.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'development/icecream/rc.icecc-scheduler')
-rw-r--r--development/icecream/rc.icecc-scheduler50
1 files changed, 0 insertions, 50 deletions
diff --git a/development/icecream/rc.icecc-scheduler b/development/icecream/rc.icecc-scheduler
deleted file mode 100644
index 633661bebe..0000000000
--- a/development/icecream/rc.icecc-scheduler
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/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