diff options
Diffstat (limited to 'community/unbound/rc.d')
-rw-r--r-- | community/unbound/rc.d | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/unbound/rc.d b/community/unbound/rc.d new file mode 100644 index 000000000..f392450ae --- /dev/null +++ b/community/unbound/rc.d @@ -0,0 +1,33 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +name=unbound +prog="/usr/sbin/unbound" + +PID=$(pidof -o %PPID $prog) + +case "$1" in +start) + stat_busy "Starting $name daemon" + [[ -z "$PID" ]] && eval $prog &>/dev/null \ + && { add_daemon $name; stat_done; } \ + || { stat_fail; exit 1; } + ;; +stop) + stat_busy "Stopping $name daemon" + [[ -n "$PID" ]] && kill $PID &>/dev/null \ + && { rm_daemon $name; stat_done; } \ + || { stat_fail; exit 1; } + ;; +restart) + $0 stop + sleep 2 + $0 start + ;; +*) + echo "usage: $0 {start|stop|restart|reload}" + exit 1 + ;; +esac |