From 5e2cd38ab998230aa81cd07196edfba2b62cb58d Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Dec 14 2015 13:57:26 +0000 Subject: DNS: fix file permissions With non default umask named-pkcs11 cannot access the softhsm token storage https://fedorahosted.org/freeipa/ticket/5520 Reviewed-By: Tomas Babej --- diff --git a/ipaserver/install/dnskeysyncinstance.py b/ipaserver/install/dnskeysyncinstance.py index b2ccc02..f2a976e 100644 --- a/ipaserver/install/dnskeysyncinstance.py +++ b/ipaserver/install/dnskeysyncinstance.py @@ -201,7 +201,8 @@ class DNSKeySyncInstance(service.Service): # create dnssec directory if not os.path.exists(paths.IPA_DNSSEC_DIR): self.logger.debug("Creating %s directory", paths.IPA_DNSSEC_DIR) - os.mkdir(paths.IPA_DNSSEC_DIR, 0o770) + os.mkdir(paths.IPA_DNSSEC_DIR) + os.chmod(paths.IPA_DNSSEC_DIR, 0o770) # chown ods:named os.chown(paths.IPA_DNSSEC_DIR, self.ods_uid, self.named_gid) @@ -218,6 +219,7 @@ class DNSKeySyncInstance(service.Service): named_fd.truncate(0) named_fd.write(softhsm_conf_txt) named_fd.close() + os.chmod(paths.DNSSEC_SOFTHSM2_CONF, 0o644) # setting up named to use softhsm2 if not self.fstore.has_file(paths.SYSCONFIG_NAMED):