diff options
Diffstat (limited to 'ipa-client')
-rwxr-xr-x | ipa-client/ipa-install/ipa-client-install | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ipa-client/ipa-install/ipa-client-install b/ipa-client/ipa-install/ipa-client-install index 6bdeb8796..c39780c9e 100755 --- a/ipa-client/ipa-install/ipa-client-install +++ b/ipa-client/ipa-install/ipa-client-install @@ -929,9 +929,12 @@ def main(): try: nscd_chkconfig_cmd('nscd') except: - print >>sys.stderr, "Failed to configure automatic startup of the NSCD daemon" if not options.sssd: + print >>sys.stderr, "Failed to configure automatic startup of the NSCD daemon" print >>sys.stderr, "Caching of users/groups will not be available after reboot" + else: + print >>sys.stderr, "Failed to disable NSCD daemon. Please disable it manually." + else: # this is optional service, just log logging.info("NSCD daemon is not installed, skip configuration") |