1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-23 00:29:46 +03:00
openwrt-xburst/openwrt/package/fakeidentd/files/fakeidentd.init

19 lines
227 B
Plaintext
Raw Normal View History

#!/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