blob: a6400e71c9996a879469a3ed6dbe4f6cabac3b7c (
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
|
#!/bin/sh
#
# /etc/rc.d/rc.policyd
#
# start/stop/restart policy daemon
# The PIDFILE is setup in the config file. Default is /var/run/policyd.pid
# if you change the location in the config file then it **needs** to be changed here too.
PIDFILE="/var/run/policyd.pid"
CONFIG="/etc/policyd.conf"
policyd_start() {
if [ -x /etc/rc.d/rc.policyd ]; then
echo "Starting Policy daemon"
/usr/bin/policyd -c $CONFIG
fi
}
policyd_stop() {
echo "Stopping Policy daemon"
/bin/kill $(cat $PIDFILE)
rm -f $PIDFILE
}
policyd_restart() {
policyd_stop
sleep 2
policyd_start
}
case "$1" in
'start')
policyd_start
;;
'stop')
policyd_stop
;;
'restart')
policyd_restart
;;
'*')
echo "USAGE: $0 start|stop|restart"
exit 1
;;
esac
|