1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
/*
* Site-specific configuration options generated by BUILD.
* Please do not edit.
*/
/*
* If MULTIPLE_SERVER_READWRITE is defined, you will be able
* to run several nfsd process in parallel servicing all NFS
* requests.
*/
/* #undef MULTIPLE_SERVERS_READWRITE */
/*
* If ENABLE_UGID_DAEMON is defined, the real rpc.ugidd is built,
* nfsd is built to support ugidd queries.
* Otherwise, a dummy program is created
*/
#define ENABLE_UGID_DAEMON
/*
* If ENABLE_UGID_NIS is defined, nfsd will support user mapping
* vie the client's NIS server.
*/
#define ENABLE_UGID_NIS
/*
* if HOSTS_ACCESS is defined, ugidd uses host access control
* provided by libwrap.a from tcp_wrappers
*/
#define HOSTS_ACCESS
/*
* Define correct ownership of export control file
*/
#define EXPORTSOWNERUID ((uid_t) 0)
#define EXPORTSOWNERGID ((gid_t) 0)
/*
* If WANT_LOG_MOUNTS is defined, every mount request will be logged
* to syslogd with the name of source site and a path that was
* it requested
*/
#define WANT_LOG_MOUNTS
|