diff options
author | Bill Nottingham <notting@redhat.com> | 2004-01-27 20:30:27 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-01-27 20:30:27 +0000 |
commit | d39c8b78395e699f2c69f2dcb3adf13765860bc1 (patch) | |
tree | 4fce72d9a240f49fd5bb6ff1385239e865ad9ddd /rc.d/init.d | |
parent | 842261ee6fc9d8e3f2f9339b22efdc8328d7b8d1 (diff) | |
download | initscripts-d39c8b78395e699f2c69f2dcb3adf13765860bc1.tar initscripts-d39c8b78395e699f2c69f2dcb3adf13765860bc1.tar.gz initscripts-d39c8b78395e699f2c69f2dcb3adf13765860bc1.tar.bz2 initscripts-d39c8b78395e699f2c69f2dcb3adf13765860bc1.tar.xz initscripts-d39c8b78395e699f2c69f2dcb3adf13765860bc1.zip |
fix mount invocation
Diffstat (limited to 'rc.d/init.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 2523e8ff..85bf6ada 100755 --- a/rc.d/init.d/netfs +++ b/rc.d/init.d/netfs @@ -38,7 +38,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 nonfs,nonfs4,smbfs,ncpfs + action $"Mounting other filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs ;; stop) # Unmount loopback stuff first |