summaryrefslogtreecommitdiff
path: root/package/busybox/files/udhcpd.init
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2010-04-11 23:37:35 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-04-12 20:06:21 +0200
commit21ed9fa0c18c76a05136fb4b9964616b4fea7728 (patch)
treead8e4fa4e80157aa358ca4175d20ca5bfcfdabf9 /package/busybox/files/udhcpd.init
parentcf46c10bda39030e892589bb2a05289fd698cd2a (diff)
add proper infrastructure for udhcpd
This is a bit hacky, as it creates a meta-package with no prompt and boolean value of the busybox internal udhcpd config symbol. It's use is only to get the required files into the image. I guess there is probably a more elegant way of doing this.
Diffstat (limited to 'package/busybox/files/udhcpd.init')
-rw-r--r--package/busybox/files/udhcpd.init28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/busybox/files/udhcpd.init b/package/busybox/files/udhcpd.init
new file mode 100644
index 000000000..d9627aa9d
--- /dev/null
+++ b/package/busybox/files/udhcpd.init
@@ -0,0 +1,28 @@
+#!/bin/sh
+#PKG udhcpd
+#INIT 50
+. /etc/rc.conf
+
+case $1 in
+autostop) ;;
+autostart)
+ [[ $udhcpd = NO ]] && exit 0
+ exec sh $0 start
+ ;;
+start)
+ touch /var/udhcp.leases
+ udhcpd -S
+ ;;
+stop)
+ pkill udhcpd
+ ;;
+restart)
+ sh $0 stop
+ sh $0 start
+ ;;
+*)
+ echo "Usage: $0 {start | stop | restart}"
+ exit 1
+ ;;
+esac
+exit $?