mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 15:08:40 +01:00
2472014a7d
Hotplug script will start service for each interface. To prevent duplicates and in general must not start on boot.
17 lines
195 B
Bash
17 lines
195 B
Bash
#!/bin/sh /etc/rc.common
|
|
START=95
|
|
|
|
boot() {
|
|
return 0
|
|
}
|
|
|
|
start() {
|
|
. /usr/lib/ddns/dynamic_dns_functions.sh
|
|
start_daemon_for_all_ddns_sections
|
|
}
|
|
|
|
stop() {
|
|
killall -9 dynamic_dns_updater.sh
|
|
}
|
|
|