From b6fab06a33cb0c829731c3123ef35444c6909d72 Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Fri, 30 Jan 2004 18:30:06 +0000 Subject: added a rc.d/netfs script to mount network-based filesystems from DAEMONS --- netfs | 35 +++++++++++++++++++++++++++++++++++ rc.conf | 2 +- rc.multi | 3 --- 3 files changed, 36 insertions(+), 4 deletions(-) create mode 100755 netfs diff --git a/netfs b/netfs new file mode 100755 index 0000000..b42482a --- /dev/null +++ b/netfs @@ -0,0 +1,35 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions + +case "$1" in + start) + stat_busy "Mounting Network Filesystems" + /bin/mount -a -t nfs,smbfs,codafs + if [ $? -gt 0 ]; then + stat_fail + else + add_daemon netfs + stat_done + fi + ;; + stop) + stat_busy "Unmounting network filesystems" + [ ! -z "$PID" ] && kill $PID &> /dev/null + umount -a -t nfs,smbfs,codafs + if [ $? -gt 0 ]; then + stat_fail + else + rm_daemon netfs + stat_done + fi + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart}" +esac diff --git a/rc.conf b/rc.conf index d1c9501..c31ed3a 100644 --- a/rc.conf +++ b/rc.conf @@ -51,6 +51,6 @@ ROUTES=(!gateway) # Daemons to start at boot-up (in this order) # (prefix a daemon with a ! to disable it) # -DAEMONS=(syslogd klogd !pcmcia network crond) +DAEMONS=(syslogd klogd !pcmcia network netfs crond) # End of file diff --git a/rc.multi b/rc.multi index 9b103e9..e33226e 100755 --- a/rc.multi +++ b/rc.multi @@ -17,7 +17,4 @@ if [ -x /etc/rc.local ]; then /etc/rc.local fi -# Mount any leftover (nfs,smbfs,etc) mounts -/bin/mount -a - # End of file -- cgit v1.2.3