installer service: fix typo in service entry

The typo would result in incorrect resolution of existing keys and
their existence wasn't properly logged as intended.

Related https://pagure.io/freeipa/issue/6920

Reviewed-By: Martin Basti <mbasti@redhat.com>
Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
This commit is contained in:
Tomas Krizek 2017-05-02 18:42:13 +02:00 committed by Martin Basti
parent 999706fcdf
commit 4b8ab77dd4

View File

@ -181,7 +181,7 @@ def set_service_entry_config(name, fqdn, config_values,
except errors.NotFound:
pass
else:
existing_values = entry.get('ipaConnfigString', [])
existing_values = entry.get('ipaConfigString', [])
for value in config_values:
if case_insensitive_attr_has_value(existing_values, value):
root_logger.debug(