ascension

Migrate DNS zones to the GNU Name System
Log | Files | Refs | README | LICENSE

commit 5e364c54a254b2240e16cfe65b379dd0ef791ff7
parent 08018c06a24c213862b82d1894aaad0c51f9778e
Author: rexxnor <rexxnor+gnunet@brief.li>
Date:   Mon, 13 May 2019 09:42:32 +0200

fixed a bug with CNAME records

Diffstat:
Mascension/ascension.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ascension/ascension.py b/ascension/ascension.py @@ -454,7 +454,7 @@ class Ascender(): if value[-1] == ".": value = value[:-1] else: - value = "%s.%s" % (value, zonename) + value = "%s.%s" % (value, self.domain) elif rdtype == 'NS': nameserver = str(record.target) if nameserver[-1] == ".":