diff options
author | Bill Nottingham <notting@redhat.com> | 1999-02-03 19:34:29 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-02-03 19:34:29 +0000 |
commit | 78f1af4fcbcc1193db5e9db036359e14cc98afd9 (patch) | |
tree | d4e80f4f61ef4d6f7d436b49ac7f113182a82ca9 /rc.d/init.d/nfsfs | |
parent | d503a6fe70268f6b451a80b3fc89641f33491e9e (diff) | |
download | initscripts-78f1af4fcbcc1193db5e9db036359e14cc98afd9.tar initscripts-78f1af4fcbcc1193db5e9db036359e14cc98afd9.tar.gz initscripts-78f1af4fcbcc1193db5e9db036359e14cc98afd9.tar.bz2 initscripts-78f1af4fcbcc1193db5e9db036359e14cc98afd9.tar.xz initscripts-78f1af4fcbcc1193db5e9db036359e14cc98afd9.zip |
more initlog changes; wait a little longer for kill -TERM
Diffstat (limited to 'rc.d/init.d/nfsfs')
-rwxr-xr-x | rc.d/init.d/nfsfs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/rc.d/init.d/nfsfs b/rc.d/init.d/nfsfs index 108b8036..f4789781 100755 --- a/rc.d/init.d/nfsfs +++ b/rc.d/init.d/nfsfs @@ -26,14 +26,12 @@ fi # See how we were called. case "$1" in start) - echo -n "Mounting remote filesystems." - mount -a -t nfs + action -n "Mounting remote filesystems" mount -a -t nfs touch /var/lock/subsys/nfsfs echo ;; stop) - echo -n "Unmounting remote filesystems." - umount -a -t nfs + action -n "Unmounting remote filesystems" umount -a -t nfs rm -f /var/lock/subsys/nfsfs echo ;; |