diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-04 07:00:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-04 07:00:44 +0000 |
commit | a12ce44f6992d8249f779e95db730a9634571654 (patch) | |
tree | 27b9bac188927e65f23574bc15258aeac868ddff /nscd/nscd.conf | |
parent | f866314b89d56845f55e6f365e18b31ec978ec3a (diff) | |
download | glibc-a12ce44f6992d8249f779e95db730a9634571654.tar.gz glibc-a12ce44f6992d8249f779e95db730a9634571654.tar.xz glibc-a12ce44f6992d8249f779e95db730a9634571654.zip |
Update.
2003-05-03 Ulrich Drepper <drepper@redhat.com> * nscd/nscd.c (main): Parse config file right after parsing parameters. Then, if get_stats is true, call receive_print_stats. Drop parameter from nscd_init call. (get_stats): New variable. (parse_opt): Set get_stats, don't call receive_print_stats here. * nscd/nscd.h: Declare dbs, stat_user, and stat_uid. Adjust nscd_init prototype. * nscd/connections.c (stat_user, stat_uid): New variables. (dbs): Make global. (nscd_init): Don't read configuration file here. Drop parameter. (handle_request): Cleanup handling of non-database lookup requests. * nscd/nscd_conf.c (nscd_parse_file): Recognize stat-user entry. Get UID of the specified user. Use xstrdup instead of strdup. * nscd/nscd_stat.c (receive_print_stats): Check UID. If not zero, check stat_user. * nscd/Makefile (nscd-modules): Add xstrdup. * nscd/nscd.conf: Document stat-user entry. 2003-05-03 H.J. Lu <hongjiu.lu@intel.com> * sysdeps/unix/sysv/linux/ia64/sysdep.h (__NR_semtimedop): Define if not defined.
Diffstat (limited to 'nscd/nscd.conf')
-rw-r--r-- | nscd/nscd.conf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nscd/nscd.conf b/nscd/nscd.conf index 226dda377f..ed05ba495f 100644 --- a/nscd/nscd.conf +++ b/nscd/nscd.conf @@ -10,6 +10,7 @@ # threads <#threads to use> # server-user <user to run server as instead of root> # server-user is ignored if nscd is started with -S parameters +# stat-user <user who is allowed to request statistics> # # enable-cache <service> <yes|no> # positive-time-to-live <service> <time in seconds> @@ -24,6 +25,7 @@ # logfile /var/log/nscd.log # threads 6 # server-user nobody +# stat-user somebody debug-level 0 enable-cache passwd yes |