42 lines
656 B
Bash
Executable File
42 lines
656 B
Bash
Executable File
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: smokeping.sh,v 1.3 2005/10/28 21:43:18 adrianp Exp $
|
|
#
|
|
# PROVIDE: smokeping
|
|
# REQUIRE: DAEMON
|
|
|
|
name="smokeping"
|
|
command="@PREFIX@/bin/smokeping"
|
|
pidfile="@VARBASE@/run/${name}.pid"
|
|
|
|
cmd=${1:-start}
|
|
|
|
case ${cmd} in
|
|
start)
|
|
if [ -x ${command} ]; then
|
|
echo "Starting ${name}."
|
|
${command} > /dev/null 2>&1
|
|
fi
|
|
;;
|
|
stop)
|
|
if [ -f ${pidfile} ]; then
|
|
pid=`head -1 ${pidfile}`
|
|
echo "Stopping ${name}."
|
|
kill ${pid}
|
|
fi
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
;;
|
|
status)
|
|
if [ -f ${pidfile} ]; then
|
|
pid=`head -1 ${pidfile}`
|
|
echo "${name} is running as pid ${pid}."
|
|
else
|
|
echo "${name} is not running."
|
|
fi
|
|
;;
|
|
esac
|
|
exit 0
|