1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-22 22:26:21 +03:00
openwrt-xburst/openwrt/package/fakeidentd/files/fakeidentd.init
florian 32155c7871 Add fakeidentd a lightweight identd daemon.
Fix minor typo in menuconfig for weechat


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3631 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-04-13 14:12:04 +00:00

19 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