mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
DnsSecMaster migration: move the call to zonelist export later
When migrating the DNSSec Master to a replica, the setup of opendnssec is re-using the database and needs to call zonelist export. With opendnssec 1.4 this call is done with ods-ksmutil while opendnssec 2.1 uses ods-enforcer that communicates with odsenforcerd that is not started yet. Move the call after ods-enforcerd is started. Related: https://pagure.io/freeipa/issue/8214 Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
parent
8080bf7b35
commit
b6865831c9
@ -293,14 +293,6 @@ class OpenDNSSECInstance(service.Service):
|
||||
os.chown(paths.OPENDNSSEC_KASP_DB, self.ods_uid, self.ods_gid)
|
||||
os.chmod(paths.OPENDNSSEC_KASP_DB, 0o660)
|
||||
|
||||
# regenerate zonelist.xml
|
||||
result = tasks.run_ods_manager(
|
||||
['zonelist', 'export'], capture_output=True
|
||||
)
|
||||
with open(paths.OPENDNSSEC_ZONELIST_FILE, 'w') as f:
|
||||
f.write(result.output)
|
||||
os.fchown(f.fileno(), self.ods_uid, self.ods_gid)
|
||||
os.fchmod(f.fileno(), 0o660)
|
||||
else:
|
||||
# initialize new kasp.db
|
||||
tasks.run_ods_setup()
|
||||
@ -315,6 +307,15 @@ class OpenDNSSECInstance(service.Service):
|
||||
def __start(self):
|
||||
self.restart() # needed to reload conf files
|
||||
tasks.run_ods_policy_import()
|
||||
if self.kasp_db_file:
|
||||
# regenerate zonelist.xml
|
||||
result = tasks.run_ods_manager(
|
||||
['zonelist', 'export'], capture_output=True
|
||||
)
|
||||
with open(paths.OPENDNSSEC_ZONELIST_FILE, 'w') as f:
|
||||
f.write(result.output)
|
||||
os.fchown(f.fileno(), self.ods_uid, self.ods_gid)
|
||||
os.fchmod(f.fileno(), 0o660)
|
||||
|
||||
def uninstall(self):
|
||||
if not self.is_configured():
|
||||
|
Loading…
Reference in New Issue
Block a user