summaryrefslogtreecommitdiff
path: root/net-mgmt/smokeping/files/smokeping.sh
blob: e47e7470d6d2f527880465ffd204d1b84134fffa (plain) (blame)
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
#!/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