mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
a12ce44f69
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.
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
#
|
|
# /etc/nscd.conf
|
|
#
|
|
# An example Name Service Cache config file. This file is needed by nscd.
|
|
#
|
|
# Legal entries are:
|
|
#
|
|
# logfile <file>
|
|
# debug-level <level>
|
|
# 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>
|
|
# negative-time-to-live <service> <time in seconds>
|
|
# suggested-size <service> <prime number>
|
|
# check-files <service> <yes|no>
|
|
#
|
|
# Currently supported cache names (services): passwd, group, hosts
|
|
#
|
|
|
|
|
|
# logfile /var/log/nscd.log
|
|
# threads 6
|
|
# server-user nobody
|
|
# stat-user somebody
|
|
debug-level 0
|
|
|
|
enable-cache passwd yes
|
|
positive-time-to-live passwd 600
|
|
negative-time-to-live passwd 20
|
|
suggested-size passwd 211
|
|
check-files passwd yes
|
|
|
|
enable-cache group yes
|
|
positive-time-to-live group 3600
|
|
negative-time-to-live group 60
|
|
suggested-size group 211
|
|
check-files group yes
|
|
|
|
enable-cache hosts yes
|
|
positive-time-to-live hosts 3600
|
|
negative-time-to-live hosts 20
|
|
suggested-size hosts 211
|
|
check-files hosts yes
|