openwrtv4/openwrt/package/fakeidentd/files/fakeidentd.init
2006-04-13 14:12:04 +00:00

18 lines
227 B
Bash

#!/bin/sh
NAME=fakeidentd
case "$1" in
start)
[ -e $DEFAULT ] && $NAME $DEFAULT
;;
stop)
killall $NAME
;;
restart)
killall $NAME
$NAME
;;
*)
echo "Usage: $NAME (start|stop|restart)" > 2&
exit 1
;;
esac