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 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 netfs (limited to '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 -- cgit v1.2.3