summaryrefslogtreecommitdiffstats
path: root/network/policyd2/rc.policyd2
blob: 80c95986352cc2e4a278ca10222118410a02ee4f (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/sh
#
# Copyright (c) 2008-2010, Nishant Limbachia, Hoffman Estates, IL, USA
#
# /etc/rc.d/rc.policyd2
# start|stop|restart|status Policyd2 daemon
# 
# The PIDFILE is setup in the config file. Default is /var/run/policyd2.pid
# If you change the location in the config file then it **needs** to be 
# changed here too for the script to work correctly

PIDFILE="/var/run/policyd2.pid"
CONFIG="/etc/policyd2.conf"

policyd2_start() {
  if [ -x /etc/rc.d/rc.policyd2 ]; then
	if [ -f $PIDFILE ]; then
		echo "Policyd2 daemon running with PID: $(cat $PIDFILE)"
		exit 1
	else
		echo "Starting Policyd2 daemon"
    		/usr/sbin/cbpolicyd -c $CONFIG
	fi
  fi
}

policyd2_stop() {
	if [ -f $PIDFILE ]; then
		echo "Stopping Policyd2 daemon"
		killall cbpolicyd && rm -f $PIDFILE
	else
		echo "Policyd2 daemon is not running"
	fi
}

policyd2_restart() {
  policyd2_stop
  sleep 5
  policyd2_start
}

policyd2_status() {
	if [ -f $PIDFILE ]; then
		echo "Policyd2 daemon running with PID: $(cat $PIDFILE)"
	else
		echo "Policyd2 daemon doesn't seem to be running!"
	fi		
}

case "$1" in
'start')
	policyd2_start
  ;;
'stop')
	policyd2_stop
  ;;
'restart')
	policyd2_restart
  ;;
'status')
	policyd2_status
  ;;
*)
	echo "USAGE: $0 start|stop|restart|status"
	exit 1
  ;;
esac