libnetfilter-log: remove (added to core)
[feed/packages.git] / net / ddns-scripts / files / etc / hotplug.d / iface / 95-ddns
1 #!/bin/sh
2
3 # there are other ACTIONs like ifupdate we don't need
4 # so parse dynamic_dns_functions.sh only when needed
5 case "$ACTION" in
6 ifup)
7 . /usr/lib/ddns/dynamic_dns_functions.sh
8 /etc/init.d/ddns enabled && start_daemon_for_all_ddns_sections "$INTERFACE"
9 ;;
10 ifdown)
11 . /usr/lib/ddns/dynamic_dns_functions.sh
12 stop_daemon_for_all_ddns_sections "$INTERFACE"
13 ;;
14 esac