From 843c0787b7e123801250b9a0fb5b974cd9fd7e7b Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Wed, 9 Nov 2011 14:23:15 +0100 Subject: Fix DNS zone --allow-dynupdate option behavior --allow-dynupdate was implemented as a Flag parameter type, which is not convenient for LDAP attributes. When a DNS zone with permitted dynamic updates was modified and the --allow-dynupdate flag was not set, dynamic updates were turned off. This patch changes the option type to Bool parameter type which behaves according to user expectations when modifying the zone. https://fedorahosted.org/freeipa/ticket/2039 --- tests/test_xmlrpc/test_dns_plugin.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tests') diff --git a/tests/test_xmlrpc/test_dns_plugin.py b/tests/test_xmlrpc/test_dns_plugin.py index 679f285d..7e75a130 100644 --- a/tests/test_xmlrpc/test_dns_plugin.py +++ b/tests/test_xmlrpc/test_dns_plugin.py @@ -215,7 +215,6 @@ class test_dns(Declarative): 'idnssoaretry': [fuzzy_digits], 'idnssoaexpire': [fuzzy_digits], 'idnssoaminimum': [fuzzy_digits], - 'idnsallowdynupdate': [u'FALSE'], }, }, ), -- cgit