summaryrefslogtreecommitdiff
path: root/package/busybox/files/inetd.init
blob: ff041aed418701204be1410b87a07db0e5120a6b (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)
	killall inetd
	;;
restart)
	sh $0 stop
	exec sh $0 start
	;;
*)
	echo "Usage: $0 {start | stop | restart}"
	exit 1
	;;
esac
exit $?