summaryrefslogtreecommitdiff
path: root/yocto-poky/meta/recipes-core/busybox/files/inetd
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/meta/recipes-core/busybox/files/inetd')
-rw-r--r--yocto-poky/meta/recipes-core/busybox/files/inetd33
1 files changed, 0 insertions, 33 deletions
diff --git a/yocto-poky/meta/recipes-core/busybox/files/inetd b/yocto-poky/meta/recipes-core/busybox/files/inetd
deleted file mode 100644
index cf50bcd54..000000000
--- a/yocto-poky/meta/recipes-core/busybox/files/inetd
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-#
-# start/stop inetd super server.
-
-if ! [ -x /usr/sbin/inetd ]; then
- exit 0
-fi
-
-case "$1" in
- start)
- echo -n "Starting internet superserver:"
- echo -n " inetd" ; start-stop-daemon -S -x /usr/sbin/inetd > /dev/null
- echo "."
- ;;
- stop)
- echo -n "Stopping internet superserver:"
- echo -n " inetd" ; start-stop-daemon -K -x /usr/sbin/inetd > /dev/null
- echo "."
- ;;
- restart)
- echo -n "Restarting internet superserver:"
- echo -n " inetd "
- killall -HUP inetd
- echo "."
- ;;
- *)
- echo "Usage: /etc/init.d/inetd {start|stop|restart}"
- exit 1
- ;;
-esac
-
-exit 0
-