From c3586321aa82bd4e12e70c8463b85c2e3888c510 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 9 Aug 2019 09:34:14 -0400 Subject: [PATCH 8/8] Rename misspelled sslctl to sssctl for the SSSD control script --- src/ipahealthcheck/ipa/trust.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ipahealthcheck/ipa/trust.py b/src/ipahealthcheck/ipa/trust.py index 6c5978d..cb18378 100644 --- a/src/ipahealthcheck/ipa/trust.py +++ b/src/ipahealthcheck/ipa/trust.py @@ -127,9 +127,9 @@ class IPATrustDomainsCheck(IPAPlugin): if result.returncode != 0: yield Result(self, constants.ERROR, key='domain_list_error', - sslctl=paths.SSSCTL, + sssctl=paths.SSSCTL, error=result.error_log, - msg='Execution of {sslctl} failed: {error}') + msg='Execution of {sssctl} failed: {error}') return sssd_domains = result.output.strip().split('\n') if 'implicit_files' in sssd_domains: @@ -152,8 +152,8 @@ class IPATrustDomainsCheck(IPAPlugin): else: yield Result(self, constants.ERROR, key=api.env.domain, - sslctl=paths.SSSCTL, - msg='{key} not in {sslctl} domain-list') + sssctl=paths.SSSCTL, + msg='{key} not in {sssctl} domain-list') trust_domains_out = ', '.join(trust_domains) sssd_domains_out = ', '.join(sssd_domains) @@ -161,10 +161,10 @@ class IPATrustDomainsCheck(IPAPlugin): if set(trust_domains).symmetric_difference(set(sssd_domains)): yield Result(self, constants.ERROR, key='domain-list', - sslctl=paths.SSSCTL, + sssctl=paths.SSSCTL, sssd_domains=sssd_domains_out, trust_domains=trust_domains_out, - msg='{sslctl} {key} reports mismatch: ' + msg='{sssctl} {key} reports mismatch: ' 'sssd domains {sssd_domains} ' 'trust domains {trust_domains}') else: -- 2.20.1