3 # $FreeBSD: src/etc/rc.d/nfsclient,v 1.3 2002/10/12 10:31:31 schweikh Exp $
4 # $DragonFly: src/etc/rc.d/nfsclient,v 1.6 2005/11/19 21:47:32 swildner Exp $
8 # REQUIRE: NETWORKING mountcritremote rpcbind
14 rcvar
="nfs_client_enable"
15 start_cmd
="nfsclient_start"
16 start_precmd
="nfsclient_precmd"
17 stop_cmd
="unmount_all"
19 # Load nfs module if it was not compiled into the kernel
22 if ! sysctl vfs.nfs
>/dev
/null
2>&1; then
23 if ! kldload nfs
; then
24 warn
'Could not load nfs module'
34 # Run nfsiod and set some nfs client related sysctls
37 if [ -n "${nfs_client_flags}" ]; then
39 nfsiod
${nfs_client_flags}
42 if [ -n "${nfs_access_cache}" ]; then
43 sysctl vfs.nfs.access_cache_timeout
=${nfs_access_cache} >/dev
/null
45 if [ -n "${nfs_neg_cache}" ]; then
46 sysctl vfs.nfs.neg_cache_timeout
=${nfs_neg_cache} >/dev
/null
48 if [ -n "${nfs_bufpackets}" ]; then
49 sysctl vfs.nfs.bufpackets
=${nfs_bufpackets} > /dev
/null
51 echo -n " access_cache_timeout=`sysctl -n vfs.nfs.access_cache_timeout`"
52 echo -n " neg_cache_timeout=`sysctl -n vfs.nfs.neg_cache_timeout`"
59 # If /var/db/mounttab exists, some nfs-server has not been
60 # successfully notified about a previous client shutdown.
61 # If there is no /var/db/mounttab, we do nothing.
63 if checkyesno rpc_umntall_enable
; then
64 if [ -f /var
/db
/mounttab
]; then
65 echo -n ' rpc.umntall'