diff options
Diffstat (limited to 'sysutils/nagios-statd/files/nagios-statd.sh.sample')
-rw-r--r-- | sysutils/nagios-statd/files/nagios-statd.sh.sample | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sysutils/nagios-statd/files/nagios-statd.sh.sample b/sysutils/nagios-statd/files/nagios-statd.sh.sample deleted file mode 100644 index ad5e7ae1724c..000000000000 --- a/sysutils/nagios-statd/files/nagios-statd.sh.sample +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -case "${1}" in -start) - nagios-statd - echo -n " nagios-statd" - ;; -stop) - kill -3 `ps -x | grep nagios-statd | grep python | awk '{print $1}'` - ;; -restart) - $0 stop - $0 start - ;; -*) - echo "Usage: $0 {start|stop|restart}" - ;; -esac - -exit 0 |