1
0
forked from ports/opt
opt/mathopd/mathopd
2005-11-16 18:05:23 +00:00

24 lines
276 B
Bash

#!/bin/sh
#
# /etc/rc.d/mathopd: start/stop mathopd http daemon
#
case $1 in
start)
/usr/sbin/mathopd -f /etc/mathopd.conf
;;
stop)
killall -q /usr/sbin/mathopd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file