diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2011-01-17 11:06:02 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-01-17 12:19:01 -0500 |
commit | 50b2904bc09dee04fbc5b13246a33f5d3b257d2e (patch) | |
tree | 96d07b2d51f168de4302ea33ae11624dced96518 /src/monitor | |
parent | 2be33d8ea8ec8128d52359ed01f52c9df252a70c (diff) | |
download | sssd-50b2904bc09dee04fbc5b13246a33f5d3b257d2e.tar.gz sssd-50b2904bc09dee04fbc5b13246a33f5d3b257d2e.tar.bz2 sssd-50b2904bc09dee04fbc5b13246a33f5d3b257d2e.zip |
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.
Diffstat (limited to 'src/monitor')
-rw-r--r-- | src/monitor/monitor.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c index bee27e8b..e46125ba 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 */ |