aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/odhcpd/files
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2013-10-16 09:03:55 +0000
committerSteven Barth <steven@midlink.org>2013-10-16 09:03:55 +0000
commit7ba0aa8dcf19606337d124e25c068c36a6122df3 (patch)
treeebe0c379b0ae1d4fccfbf491c3c39035a0283387 /package/network/services/odhcpd/files
parent0bd702e1cb76adc0f3b1e5d4795ea3ea1519b176 (diff)
downloadmaster-187ad058-7ba0aa8dcf19606337d124e25c068c36a6122df3.tar.gz
master-187ad058-7ba0aa8dcf19606337d124e25c068c36a6122df3.tar.bz2
master-187ad058-7ba0aa8dcf19606337d124e25c068c36a6122df3.zip
odhcpd: add new experimental dhcp-server
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38428 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/network/services/odhcpd/files')
-rwxr-xr-xpackage/network/services/odhcpd/files/odhcpd-update3
-rw-r--r--package/network/services/odhcpd/files/odhcpd.init18
2 files changed, 21 insertions, 0 deletions
diff --git a/package/network/services/odhcpd/files/odhcpd-update b/package/network/services/odhcpd/files/odhcpd-update
new file mode 100755
index 0000000000..20980f2228
--- /dev/null
+++ b/package/network/services/odhcpd/files/odhcpd-update
@@ -0,0 +1,3 @@
+#!/bin/sh
+# Make dnsmasq reread hostfile
+killall -SIGHUP dnsmasq
diff --git a/package/network/services/odhcpd/files/odhcpd.init b/package/network/services/odhcpd/files/odhcpd.init
new file mode 100644
index 0000000000..c8a311484e
--- /dev/null
+++ b/package/network/services/odhcpd/files/odhcpd.init
@@ -0,0 +1,18 @@
+#!/bin/sh /etc/rc.common
+
+START=35
+STOP=85
+USE_PROCD=1
+
+start_service() {
+ procd_open_instance
+ procd_set_param command /usr/sbin/odhcpd
+ procd_set_param respawn
+ procd_close_instance
+}
+
+service_triggers()
+{
+ procd_add_reload_trigger "dhcp"
+}
+