From: Andrew Bartlett Date: Thu, 27 Dec 2012 23:05:40 +0000 (+1100) Subject: scripting/samba_upgradedns: Only look for IPv4/IPv6 addresses if we actually them X-Git-Url: http://git.samba.org/?a=commitdiff_plain;ds=sidebyside;h=edbc26bca84ee77b5a9571ba8dc9416c0db25906;p=kai%2Fsamba.git scripting/samba_upgradedns: Only look for IPv4/IPv6 addresses if we actually them This allows the script to be used to create/remove the samba-specific dns-SERVER account when we do not need to create the in-directory partition. Andrew Bartlett Reviewed-by: Stefan Metzmacher Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Thu Jan 10 20:56:50 CET 2013 on sn-devel-104 --- diff --git a/source4/scripting/bin/samba_upgradedns b/source4/scripting/bin/samba_upgradedns index ba597cfa070..f389ef7f4a7 100755 --- a/source4/scripting/bin/samba_upgradedns +++ b/source4/scripting/bin/samba_upgradedns @@ -278,27 +278,6 @@ if __name__ == '__main__': logger.error("Cannot create AD based DNS for OS level < 2003") sys.exit(1) - logger.info("Looking up IPv4 addresses") - hostip = interface_ips_v4(lp) - try: - hostip.remove('127.0.0.1') - except ValueError: - pass - if not hostip: - logger.error("No IPv4 addresses found") - sys.exit(1) - else: - hostip = hostip[0] - logger.debug("IPv4 addresses: %s" % hostip) - - logger.info("Looking up IPv6 addresses") - hostip6 = interface_ips_v6(lp, linklocal=False) - if not hostip6: - hostip6 = None - else: - hostip6 = hostip6[0] - logger.debug("IPv6 addresses: %s" % hostip6) - domaindn = names.domaindn forestdn = names.rootdn @@ -351,6 +330,28 @@ if __name__ == '__main__': ncname = msg[0]['nCName'][0] except Exception, e: logger.info("Creating DNS partitions") + + logger.info("Looking up IPv4 addresses") + hostip = interface_ips_v4(lp) + try: + hostip.remove('127.0.0.1') + except ValueError: + pass + if not hostip: + logger.error("No IPv4 addresses found") + sys.exit(1) + else: + hostip = hostip[0] + logger.debug("IPv4 addresses: %s" % hostip) + + logger.info("Looking up IPv6 addresses") + hostip6 = interface_ips_v6(lp, linklocal=False) + if not hostip6: + hostip6 = None + else: + hostip6 = hostip6[0] + logger.debug("IPv6 addresses: %s" % hostip6) + create_dns_partitions(ldbs.sam, domainsid, names, domaindn, forestdn, dnsadmins_sid)