summaryrefslogtreecommitdiffstats
path: root/contrib/smbfs/examples/smbfs.sh.sample
blob: 7908de26cc6424e1f1afbb238a7281b39bd195a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
#
# $Id: smbfs.sh.sample,v 1.3 2001/01/13 04:50:36 bp Exp $
#
# Location: /usr/local/etc/rc.d/smbfs.sh
#
# Simple script to mount smbfs file systems at startup.
# It assumes that all mount points described in fstab file and password
# entries listed in /root/.nsmbrc file. See mount_smbfs(8) for details.
#

mount="/sbin/mount -o -N"
umount=/sbin/umount
HOME=/root; export HOME
vols=`awk -- '/^\/.*[[:space:]]+smbfs[[:space:]]+/ { print $2 }' /etc/fstab`

case "$1" in
start)
	echo -n "smbfs: "
	for vol in ${vols}; do
		$mount $vol
		echo -n "$vol "
	done
	;;
stop)
	echo -n "unmounting smbfs mount points: "
	for vol in ${vols}; do
		$umount $vol
		echo -n "$vol "
	done
	;;
*)
	echo "Usage: `basename $0` {start|stop}" >&2
	exit 64
esac

echo "Done"
OpenPOWER on IntegriCloud