From 7e26517840847b344a607d017dcf94d7905c41b4 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 5 Apr 2012 11:28:43 -0400 Subject: Add missing comma to list of services that cannot be disabled. https://fedorahosted.org/freeipa/ticket/2487 --- ipalib/plugins/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/service.py') diff --git a/ipalib/plugins/service.py b/ipalib/plugins/service.py index 7c563b30..333d5bbf 100644 --- a/ipalib/plugins/service.py +++ b/ipalib/plugins/service.py @@ -208,7 +208,7 @@ def check_required_principal(ldap, hostname, service): try: host_is_master(ldap, hostname) except errors.ValidationError, e: - service_types = ['HTTP', 'ldap', 'DNS' 'dogtagldap'] + service_types = ['HTTP', 'ldap', 'DNS', 'dogtagldap'] if service in service_types: raise errors.ValidationError(name='principal', error=_('This principal is required by the IPA master')) -- cgit