summaryrefslogtreecommitdiff
path: root/yocto-poky/meta/recipes-core/busybox/files/busybox-udhcpd
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/meta/recipes-core/busybox/files/busybox-udhcpd')
-rwxr-xr-xyocto-poky/meta/recipes-core/busybox/files/busybox-udhcpd43
1 files changed, 0 insertions, 43 deletions
diff --git a/yocto-poky/meta/recipes-core/busybox/files/busybox-udhcpd b/yocto-poky/meta/recipes-core/busybox/files/busybox-udhcpd
deleted file mode 100755
index c43903e8d..000000000
--- a/yocto-poky/meta/recipes-core/busybox/files/busybox-udhcpd
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-DAEMON=/usr/sbin/udhcpd
-NAME=udhcpd
-DESC="Busybox UDHCP Server"
-ARGS="/etc/udhcpd.conf"
-
-test -f $DAEMON || exit 1
-
-set -e
-
-case "$1" in
- start)
- echo -n "starting $DESC: $NAME... "
- if [ ! -f /etc/udhcpd.conf ]; then
- echo "error: /etc/udhcpd.conf is missing."
- exit 1
- fi
- /sbin/start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS
- echo "done."
- ;;
- stop)
- echo -n "stopping $DESC: $NAME... "
- /sbin/start-stop-daemon -K -n $NAME
- echo "done."
- ;;
- restart)
- echo "restarting $DESC: $NAME... "
- $0 stop
- $0 start
- echo "done."
- ;;
- reload)
- echo -n "reloading $DESC: $NAME... "
- killall -HUP $(basename ${DAEMON})
- echo "done."
- ;;
- *)
- echo "Usage: $0 {start|stop|restart|reload}"
- exit 1
- ;;
-esac
-
-exit 0