Add missing comma to list of services that cannot be disabled.

https://fedorahosted.org/freeipa/ticket/2487
This commit is contained in:
Rob Crittenden
2012-04-05 11:28:43 -04:00
committed by Martin Kosek
parent af0ac845ff
commit 7e26517840

View File

@@ -208,7 +208,7 @@ def check_required_principal(ldap, hostname, service):
try: try:
host_is_master(ldap, hostname) host_is_master(ldap, hostname)
except errors.ValidationError, e: except errors.ValidationError, e:
service_types = ['HTTP', 'ldap', 'DNS' 'dogtagldap'] service_types = ['HTTP', 'ldap', 'DNS', 'dogtagldap']
if service in service_types: if service in service_types:
raise errors.ValidationError(name='principal', error=_('This principal is required by the IPA master')) raise errors.ValidationError(name='principal', error=_('This principal is required by the IPA master'))