From f3adf835efce14a4148c5d1e563b57b08ef3606f Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Mon, 24 Feb 2020 20:48:00 +0100 Subject: [PATCH] Unbound/dhcpd, missed a line in https://github.com/opnsense/core/commit/96396f782e90c7ce9debf0f8e719598c33d21306 for https://github.com/opnsense/core/issues/3730 --- src/opnsense/scripts/dns/unbound_dhcpd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/opnsense/scripts/dns/unbound_dhcpd.py b/src/opnsense/scripts/dns/unbound_dhcpd.py index 51a25576c..9e1732f82 100755 --- a/src/opnsense/scripts/dns/unbound_dhcpd.py +++ b/src/opnsense/scripts/dns/unbound_dhcpd.py @@ -176,3 +176,4 @@ if __name__ == '__main__': syslog.syslog(syslog.LOG_NOTICE, 'daemonize unbound dhcpd watcher.') cmd = lambda : run_watcher(target_filename=inputargs.target, domain=inputargs.domain) daemon = Daemonize(app="unbound_dhcpd", pid=inputargs.pid, action=cmd) + daemon.start()