mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 15:47:11 +02:00
32155c7871
Fix minor typo in menuconfig for weechat git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3631 3c298f89-4303-0410-b956-a3cf2f4a3e73
19 lines
227 B
Bash
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
|