From 3b1aa2ca5f9ae151cd64579ed05c8fb766b1ec5d Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 11 Aug 2017 12:45:14 +0200 Subject: [PATCH] python:samba: Remove code to change group This is the wrong place, it will just prepare the ldif. The file is not created here. The code is corrently changing the group in: python/samba/provision/__init__.py Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlet --- python/samba/provision/sambadns.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/python/samba/provision/sambadns.py b/python/samba/provision/sambadns.py index 961f37e16a6..dcb19c7053c 100644 --- a/python/samba/provision/sambadns.py +++ b/python/samba/provision/sambadns.py @@ -1199,16 +1199,6 @@ def setup_bind9_dns(samdb, secretsdb, names, paths, lp, logger, dns_keytab_path=paths.dns_keytab, dnspass=dnspass, key_version_number=key_version_number) - dns_keytab_path = os.path.join(paths.private_dir, paths.dns_keytab) - if os.path.isfile(dns_keytab_path) and paths.bind_gid is not None: - try: - os.chmod(dns_keytab_path, 0640) - os.chown(dns_keytab_path, -1, paths.bind_gid) - except OSError: - if not os.environ.has_key('SAMBA_SELFTEST'): - logger.info("Failed to chown %s to bind gid %u", - dns_keytab_path, paths.bind_gid) - create_dns_dir(logger, paths) if dns_backend == "BIND9_FLATFILE":