diff options
author | jkh <jkh@FreeBSD.org> | 1997-05-19 07:46:51 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-05-19 07:46:51 +0000 |
commit | eca8c2300f1cee399e1067babe0cd5c755a6b17d (patch) | |
tree | cf2a40c15c994ec77bd66619ac5a5e67ef5c169b /etc/rc.network | |
parent | 94f9f7a6691325b00b2d5a5a0639b6565a624633 (diff) | |
download | FreeBSD-src-eca8c2300f1cee399e1067babe0cd5c755a6b17d.zip FreeBSD-src-eca8c2300f1cee399e1067babe0cd5c755a6b17d.tar.gz |
Neaten up some things which were inconsistent, add a few more flags
to things which need them, general cleanup.
Submitted by: Brian Somers <brian@awfulhak.org>
Diffstat (limited to 'etc/rc.network')
-rw-r--r-- | etc/rc.network | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.network b/etc/rc.network index d44043e..398b867 100644 --- a/etc/rc.network +++ b/etc/rc.network @@ -1,6 +1,6 @@ #!/bin/sh - # -# $Id: rc.network,v 1.6 1997/05/03 11:22:17 jkh Exp $ +# $Id: rc.network,v 1.7 1997/05/13 08:22:27 jkh Exp $ # From: @(#)netstart 5.9 (Berkeley) 3/30/91 # Note that almost all the user-configurable behavior is no longer in @@ -170,7 +170,7 @@ network_pass3() { echo -n ' nfsprivport=YES' sysctl -w vfs.nfs.nfs_privport=1 >/dev/null 2>&1 fi - echo -n ' nfsd'; nfsd -u -t 4 + echo -n ' nfsd'; nfsd ${nfs_server_flags} if [ "X$rpc_lockd_enable" = X"YES" ]; then echo -n ' rpc.lockd'; rpc.lockd fi @@ -180,7 +180,7 @@ network_pass3() { fi if [ "X${nfs_client_enable}" = X"YES" ]; then - echo -n ' nfsiod'; nfsiod -n 4 + echo -n ' nfsiod'; nfsiod ${nfs_client_flags} fi if [ "X${amd_enable}" = X"YES" ]; then |