From 50b2904bc09dee04fbc5b13246a33f5d3b257d2e Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Mon, 17 Jan 2011 11:06:02 -0500 Subject: Clarify nscd warning Removes the level-zero DEBUG message and modifies the syslog message to explain that NSCD is safe for maps that SSSD does not (yet) support. --- src/monitor/monitor.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c index bee27e8b9..e46125baf 100644 --- a/src/monitor/monitor.c +++ b/src/monitor/monitor.c @@ -2310,11 +2310,12 @@ int main(int argc, const char *argv[]) /* Warn if nscd seems to be running */ ret = check_file(NSCD_SOCKET_PATH, -1, -1, -1, CHECK_SOCK, NULL); if (ret == EOK) { - DEBUG(0, ("WARNING: nscd appears to be running\n")); sss_log(SSS_LOG_NOTICE, - "nscd socket was detected. As nscd caching capabilities " - "may conflict with SSSD, it is recommended to not run " - "nscd in parallel with SSSD"); + "nscd socket was detected. Nscd caching capabilities " + "may conflict with SSSD for users and groups. It is " + "recommended not to run nscd in parallel with SSSD, unless " + "nscd is configured not to cache the passwd, group and " + "netgroup nsswitch maps."); } /* Parse config file, fail if cannot be done */ -- cgit