diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-08-30 15:17:59 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2013-09-02 09:48:25 +0200 |
commit | 21708c19b56adfb3df19187d4e6566f0a1e87df3 (patch) | |
tree | 93516aaa042a57e5ffb59d231372cc101abdb1b9 /source4 | |
parent | 10c17840245d5604ef1e0c52b0f45fa43c9ad713 (diff) | |
download | samba-21708c19b56adfb3df19187d4e6566f0a1e87df3.tar.gz |
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>
(cherry picked from commit 9edc0276c742194ec381c266acedf3216ccf1c69)
Diffstat (limited to 'source4')
-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: |