diff options
Diffstat (limited to 'network/policyd2/rc.policyd2')
-rw-r--r-- | network/policyd2/rc.policyd2 | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/network/policyd2/rc.policyd2 b/network/policyd2/rc.policyd2 new file mode 100644 index 0000000000..80c9598635 --- /dev/null +++ b/network/policyd2/rc.policyd2 @@ -0,0 +1,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 |