Allow to change root domain record via dyndns

This commit is contained in:
ssendev 2016-08-18 22:05:15 +02:00 committed by GitHub
parent 7ac543b837
commit 271b0c31cc

View file

@ -762,12 +762,12 @@ def dyndns_update():
domain = None
domain_segments = hostname.split('.')
for index in range(len(domain_segments)):
domain_segments.pop(0)
full_domain = '.'.join(domain_segments)
potential_domain = Domain.query.filter(Domain.name == full_domain).first()
if potential_domain in domains:
domain = potential_domain
break
domain_segments.pop(0)
if not domain:
history = History(msg="DynDNS update: attempted update of %s but it does not exist for this user" % hostname, created_by=current_user.username)