mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
7 lines
166 B
Bash
7 lines
166 B
Bash
#!/bin/sh
|
|
|
|
if [ "$ACTION" = "ifup" ]; then
|
|
. /usr/lib/ddns/dynamic_dns_functions.sh
|
|
/etc/init.d/ddns enabled && start_daemon_for_all_ddns_sections "$INTERFACE"
|
|
fi
|
|
|