diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-08-30 15:17:59 +0200 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2013-08-30 15:35:34 +0200 |
commit | 9edc0276c742194ec381c266acedf3216ccf1c69 (patch) | |
tree | 964bd4f2e418bd048a1aa264941f56fd9f610bd5 | |
parent | 0e6aca40413fb3cfd4300f282204a69743be4a65 (diff) | |
download | samba-9edc0276c742194ec381c266acedf3216ccf1c69.tar.gz samba-9edc0276c742194ec381c266acedf3216ccf1c69.tar.bz2 samba-9edc0276c742194ec381c266acedf3216ccf1c69.zip |
s4:samba_upgradedns: don't pass linklocal=False to interface_ips_v6()
This is the default...
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Bjoern Jacke <bj@sernet.de>
-rwxr-xr-x | source4/scripting/bin/samba_upgradedns | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/bin/samba_upgradedns b/source4/scripting/bin/samba_upgradedns index 3c30090e0f..b7af98c30d 100755 --- a/source4/scripting/bin/samba_upgradedns +++ b/source4/scripting/bin/samba_upgradedns @@ -331,7 +331,7 @@ if __name__ == '__main__': logger.debug("IPv4 addresses: %s" % hostip) logger.info("Looking up IPv6 addresses") - hostip6 = interface_ips_v6(lp, linklocal=False) + hostip6 = interface_ips_v6(lp) if not hostip6: hostip6 = None else: |