blob: 372bfeae91464fa0baa4aeaf9e52729d60cb8f5c (
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
|
#! /bin/sh
#
# This is an init script for open protium for storcenter
# Copy it to /etc/init.d/sccd and type
# > update-rc.d sccd defaults 60
#
sccd=/sbin/sccd
test -x "$sccd" || exit 0
case "$1" in
start)
echo -n "Starting StorCenter Control Daemon"
start-stop-daemon --start --quiet --exec $sccd
echo "."
;;
stop)
echo -n "Stopping StorCenter Control Daemon"
start-stop-daemon --stop --quiet --pidfile /var/run/sccd.pid
echo "."
;;
reload|force-reload)
start-stop-daemon --stop --quiet --signal 1 --exec $sccd
;;
restart)
echo -n "Stopping StorCenter Control Daemon"
start-stop-daemon --stop --quiet --pidfile /var/run/sccd.pid
echo "."
sleep 1
echo -n "Starting StorCenter Control Daemon"
start-stop-daemon --start --quiet --exec $sccd
echo "."
;;
*)
echo "Usage: /etc/init.d/sccd {start|stop|reload|restart|force-reload}"
exit 1
esac
exit 0
|