summaryrefslogtreecommitdiff
path: root/package/busybox/files/inetd.init
blob: 142fa6a039c53f3c74ed4cc8fb3a2b6bceb34d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
#PKG busybox
#INIT 41
. /etc/rc.conf
case $1 in
autostart)
	test x"$inetd" = x"NO" && exit 0
	test -e /etc/inetd.conf || exit 0
	exec sh $0 start
	;;
start)
	/usr/sbin/inetd
	;;
autostop)
	;;
stop)
	kill $(pgrep -f /usr/sbin/inetd)
	;;
restart)
	sh $0 stop
	exec sh $0 start
	;;
*)
	echo "Usage: $0 {start | stop | restart}"
	exit 1
	;;
esac
exit $?