diff options
author | Bill Nottingham <notting@redhat.com> | 2000-08-22 15:47:32 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-08-22 15:47:32 +0000 |
commit | ebbdbea0a3b70061f30abc114b0a72637def9cef (patch) | |
tree | 69ab3705943cf996b586eef452393b14f059b0cf /rc.d | |
parent | c1aa64a98956158e3d63b6e3d7ff6d07b397890b (diff) | |
download | initscripts-ebbdbea0a3b70061f30abc114b0a72637def9cef.tar initscripts-ebbdbea0a3b70061f30abc114b0a72637def9cef.tar.gz initscripts-ebbdbea0a3b70061f30abc114b0a72637def9cef.tar.bz2 initscripts-ebbdbea0a3b70061f30abc114b0a72637def9cef.tar.xz initscripts-ebbdbea0a3b70061f30abc114b0a72637def9cef.zip |
fix minor logical error
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/init.d/netfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/netfs b/rc.d/init.d/netfs index 7e192239..21358a35 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -40,7 +40,7 @@ case "$1" in [ -n "$SMBFSTAB" ] && action "Mounting SMB filesystems: " mount -a -t smbfs [ -n "$NCPFSTAB" ] && action "Mounting NCP filesystems: " mount -a -t ncpfs touch /var/lock/subsys/netfs - action "Mounting other filesystems: " mount -a -t noproc,nonfs,smbfs,ncpfs + action "Mounting other filesystems: " mount -a -t noproc,nfs,smbfs,ncpfs ;; stop) [ -n "$NFSMTAB" ] && { |