aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/smokeping/files/smokeping.sh
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-06-01 23:49:18 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-06-01 23:49:18 +0000
commit6a294c20389911c409eb5f6f05033eaf6c6975ab (patch)
treeb621d2670693545124e161f6048aa76ec80ae631 /net-mgmt/smokeping/files/smokeping.sh
parentef70e9816ef935802e3a1e27b44f1c499b5cb27b (diff)
Notes
Diffstat (limited to 'net-mgmt/smokeping/files/smokeping.sh')
-rw-r--r--net-mgmt/smokeping/files/smokeping.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/net-mgmt/smokeping/files/smokeping.sh b/net-mgmt/smokeping/files/smokeping.sh
deleted file mode 100644
index e47e7470d6d2..000000000000
--- a/net-mgmt/smokeping/files/smokeping.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
- echo "$0: Cannot determine the PREFIX" >&2
- exit 1
-fi
-
-case "$1" in
-start)
- [ -r ${PREFIX}/etc/smokeping/config ] && \
- su -f -m smokeping -c ${PREFIX}/bin/smokeping > /dev/null && \
- echo -n ' smokeping'
- ;;
-restart)
- [ -r ${PREFIX}/etc/smokeping/config ] && \
- su -f -m smokeping -c "${PREFIX}/bin/smokeping --restart" > /dev/null && \
- echo -n ' smokeping'
- ;;
-stop)
- [ -r ${PREFIX}/var/smokeping/smokeping.pid ] && \
- su -f -m smokeping -c "kill `cat ${PREFIX}/var/smokeping/smokeping.pid`" > /dev/null && \
- echo -n ' smokeping'
- ;;
-*)
- echo "Usage: `basename $0` {start|restart|stop}" >&2
- ;;
-esac
-
-exit 0