Tweaks to the dameon operation

This commit is contained in:
Joshua Boniface 2018-10-15 22:22:34 -04:00
parent c13a4e84af
commit 1b49f70b3c
2 changed files with 5 additions and 1 deletions

View File

@ -157,7 +157,6 @@ class DNSAggregatorInstance(object):
'--loglevel=3',
'--master=no',
'--slave=yes',
'--slave-cycle-interval=5',
'--version-string=powerdns',
'--socket-dir={}'.format(self.config['pdns_dynamic_directory']),
'--launch=gsqlite3',
@ -180,4 +179,6 @@ class DNSAggregatorInstance(object):
'Stopping PowerDNS zone aggregator',
state='o'
)
self.dns_server_daemon.signal('int')
time.sleep(0.2)
self.dns_server_daemon.signal('term')

View File

@ -333,6 +333,7 @@ add rule inet filter input meta iifname {bridgenic} counter drop
'--auth-zone={}'.format(self.domain),
'--auth-peer=127.0.0.1,{}'.format(self.ip_gateway),
'--auth-sec-servers=127.0.0.1,[::1],{}'.format(self.ip_gateway),
'--auth-soa=1,pvc@localhost,10,10',
'--listen-address={}'.format(self.ip_gateway),
'--bind-interfaces',
'--leasefile-ro',
@ -418,4 +419,6 @@ add rule inet filter input meta iifname {bridgenic} counter drop
prefix='VNI {}'.format(self.vni),
state='o'
)
self.dhcp_server_daemon.signal('int')
time.sleep(0.2)
self.dhcp_server_daemon.signal('term')