Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/ddupdate/ddplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ def parse_ifconfig_output(self, text):
if 'deprecated' in words:
# don't use a "deprecated" address
continue
if 'temporary' in words:
# don't use a "temporary" address
continue
self.v6 = addr
if self.empty():
raise AddressError("Cannot find address for %s, giving up" % text)
Expand Down