1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-22 02:50:28 +03:00

s4-test: silence the Failed to chown message in make test

This commit is contained in:
Andrew Tridgell 2010-10-02 13:08:37 -07:00
parent e36f20d39d
commit 762ad1c4ba

View File

@ -1672,8 +1672,9 @@ def provision(setup_dir, logger, session_info,
os.chmod(dns_keytab_path, 0640)
os.chown(dns_keytab_path, -1, paths.bind_gid)
except OSError:
logger.info("Failed to chown %s to bind gid %u", dns_keytab_path,
paths.bind_gid)
if os.environ.get('UID_WRAPPER'):
logger.info("Failed to chown %s to bind gid %u", dns_keytab_path,
paths.bind_gid)
logger.info("Please install the phpLDAPadmin configuration located at %s into /etc/phpldapadmin/config.php",
@ -1826,7 +1827,8 @@ def create_zone_file(lp, logger, paths, targetdir, setup_path, dnsdomain,
os.chmod(dns_dir, 0775)
os.chmod(paths.dns, 0664)
except OSError:
logger.error("Failed to chown %s to bind gid %u" % (dns_dir, paths.bind_gid))
if os.environ.get('UID_WRAPPER'):
logger.error("Failed to chown %s to bind gid %u" % (dns_dir, paths.bind_gid))
if targetdir is None:
os.system(rndc + " unfreeze " + lp.get("realm"))