diff options
author | Erik Troan <ewt@redhat.com> | 1997-09-16 14:12:05 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1997-09-16 14:12:05 +0000 |
commit | ced9dffda28f1ec2b060f3e419cf3c6b964b03a1 (patch) | |
tree | da3f56c24861ddc77e2910291c71adc12dca136b /rc.d/init.d/nfsfs | |
download | initscripts-ced9dffda28f1ec2b060f3e419cf3c6b964b03a1.tar initscripts-ced9dffda28f1ec2b060f3e419cf3c6b964b03a1.tar.gz initscripts-ced9dffda28f1ec2b060f3e419cf3c6b964b03a1.tar.bz2 initscripts-ced9dffda28f1ec2b060f3e419cf3c6b964b03a1.tar.xz initscripts-ced9dffda28f1ec2b060f3e419cf3c6b964b03a1.zip |
Initial revision
Diffstat (limited to 'rc.d/init.d/nfsfs')
-rwxr-xr-x | rc.d/init.d/nfsfs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/rc.d/init.d/nfsfs b/rc.d/init.d/nfsfs new file mode 100755 index 00000000..6da8eaa9 --- /dev/null +++ b/rc.d/init.d/nfsfs @@ -0,0 +1,40 @@ +#!/bin/sh +# +# nfsfs Mount NFS filesystems. +# +# Version: @(#) /etc/init.d/skeleton 1.01 26-Oct-1993 +# +# Author: Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org> +# + +# Source networking configuration. +if [ ! -f /etc/sysconfig/network ]; then + exit 0 +fi + +. /etc/sysconfig/network + +# Check that networking is up. +[ ${NETWORKING} = "no" ] && exit 0 + +# See how we were called. +case "$1" in + start) + echo -n "Mounting remote filesystems." + mount -a -t nfs + touch /var/lock/subsys/nfsfs + echo + ;; + stop) + echo -n "Unmounting remote filesystems." + umount -a -t nfs + rm -f /var/lock/subsys/nfsfs + echo + ;; + *) + echo "Usage: nfsfs {start|stop}" + exit 1 +esac + +exit 0 + |