summaryrefslogtreecommitdiffstats
path: root/openwrt/package/fakeidentd/files/fakeidentd.init
blob: 954ad8c24c316b4ed4591c7f606364f50cb7bb98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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