git.99rst.org
/
openwrt-packages.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
1ab5d36
)
ddns-scripts: only start via hotplug not via boot
author
Christian Schoenebeck
<redacted>
Sun, 27 Jul 2014 13:52:13 +0000
(15:52 +0200)
committer
Christian Schoenebeck
<redacted>
Sun, 27 Jul 2014 13:52:13 +0000
(15:52 +0200)
Hotplug script will start service for each interface.
To prevent duplicates and in general must not start on boot.
Signed-off-by: Christian Schoenebeck <redacted>
net/ddns-scripts/files/etc/init.d/ddns
patch
|
blob
|
history
diff --git
a/net/ddns-scripts/files/etc/init.d/ddns
b/net/ddns-scripts/files/etc/init.d/ddns
index 3171d5ae924f43e5686072c87a37212f2dd42acd..1194543cbac3f3d3c15e6bf9c263835ab96234e7 100644
(file)
--- a/
net/ddns-scripts/files/etc/init.d/ddns
+++ b/
net/ddns-scripts/files/etc/init.d/ddns
@@
-1,6
+1,10
@@
#!/bin/sh /etc/rc.common
START=95
+boot() {
+ return 0
+}
+
start() {
. /usr/lib/ddns/dynamic_dns_functions.sh
start_daemon_for_all_ddns_sections
git clone https://git.99rst.org/PROJECT