Merge remote-tracking branch 'OE-2.1/master' into vuplus-3.0
[vuplus_openvuplus_3.0] / meta-openvuplus / recipes-core / busybox / busybox-1.22.1 / inetd
1 #!/bin/sh
2 #
3 # start/stop inetd super server.
4
5 if ! [ -x /usr/sbin/inetd ]; then
6         exit 0
7 fi
8
9 case "$1" in
10     start)
11         echo -n "Starting internet superserver:"
12         echo -n " inetd" ; start-stop-daemon -S -x /usr/sbin/inetd > /dev/null
13         echo "."
14         ;;
15     stop)
16         echo -n "Stopping internet superserver:"
17         echo -n " inetd" ; start-stop-daemon -K -x /usr/sbin/inetd > /dev/null
18         echo "."
19         ;;
20     restart)
21         echo -n "Restarting internet superserver:"
22         echo -n " inetd "
23         killall -HUP inetd
24         echo "."
25         ;;
26     *)
27         echo "Usage: /etc/init.d/inetd {start|stop|restart}"
28         exit 1
29         ;;
30 esac
31
32 exit 0
33