From 077a61524d79ac5ab6f0eb46450c82ad5594bd2b Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Apr 05 2017 08:15:51 +0000 Subject: idrange-add: properly handle empty --dom-name option When idrange-add is called with --dom-name=, the CLI exits with ipa: ERROR: an internal error has occurred This happens because the code checks if the option is provided but does not check if the value is None. We need to handle empty dom-name as if the option was not specified. https://pagure.io/freeipa/issue/6404 Reviewed-By: Stanislav Laznicka --- diff --git a/ipaserver/plugins/idrange.py b/ipaserver/plugins/idrange.py index 5b88a6b..c8ea95a 100644 --- a/ipaserver/plugins/idrange.py +++ b/ipaserver/plugins/idrange.py @@ -411,7 +411,7 @@ class idrange_add(LDAPCreate): # This needs to stay in options since there is no # ipanttrusteddomainname attribute in LDAP - if 'ipanttrusteddomainname' in options: + if options.get('ipanttrusteddomainname'): if is_set('ipanttrusteddomainsid'): raise errors.ValidationError(name='ID Range setup', error=_('Options dom-sid and dom-name '