diff options
Diffstat (limited to 'source4/scripting/bin')
-rwxr-xr-x | source4/scripting/bin/samba_dnsupdate | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/scripting/bin/samba_dnsupdate b/source4/scripting/bin/samba_dnsupdate index cefe3ce859..c82e06bb6f 100755 --- a/source4/scripting/bin/samba_dnsupdate +++ b/source4/scripting/bin/samba_dnsupdate @@ -93,7 +93,9 @@ IP6s = [] IP4s = [] for i in IPs: if i.find(':') != -1: - IP6s.append(i) + if i.find('%') == -1: + # we don't want link local addresses for DNS updates + IP6s.append(i) else: IP4s.append(i) |