From 54a2fefd8c38fe870c90f1434997c4cb92df70b9 Mon Sep 17 00:00:00 2001 From: Jocelyn Delande Date: Sun, 13 Sep 2015 01:38:12 +0200 Subject: [PATCH] [fix] Added missing AAAA records deletion on dyndns update --- lib/yunohost/dyndns.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/yunohost/dyndns.py b/lib/yunohost/dyndns.py index 27650ad99..68500f081 100644 --- a/lib/yunohost/dyndns.py +++ b/lib/yunohost/dyndns.py @@ -161,8 +161,11 @@ def dyndns_update(dyn_host="dynhost.yunohost.org", domain=None, key=None, ip=Non 'update delete %s. MX' % domain, 'update delete %s. TXT' % domain, 'update delete pubsub.%s. A' % domain, + 'update delete pubsub.%s. AAAA' % domain, 'update delete muc.%s. A' % domain, + 'update delete muc.%s. AAAA' % domain, 'update delete vjud.%s. A' % domain, + 'update delete vjud.%s. AAAA' % domain, 'update delete _xmpp-client._tcp.%s. SRV' % domain, 'update delete _xmpp-server._tcp.%s. SRV' % domain, 'update add %s. 1800 A %s' % (domain, new_ip),