ddns-scripts: fix daemon start - background the script

omitted the ampersand in the re-factor in commit
a361672882

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
This commit is contained in:
Paul Donald
2025-04-11 16:18:59 +02:00
committed by Florian Eckert
parent 939939bcee
commit 081f1856a5

View File

@@ -190,7 +190,7 @@ start_daemon_for_all_ddns_sections()
for section_id in $sections; do
config_get configured_if "$section_id" interface "wan"
[ -z "$event_if" ] || [ "$configured_if" = "$event_if" ] || continue
/usr/lib/ddns/dynamic_dns_updater.sh -v "$VERBOSE" -S "$section_id" -- start
/usr/lib/ddns/dynamic_dns_updater.sh -v "$VERBOSE" -S "$section_id" -- start &
done
}