aboutsummaryrefslogtreecommitdiff
path: root/bin/vmount
blob: 6d717f0b7fa23ebfcdb39af66f6d6ebb21a7a8fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/local/plan9/bin/rc

if(! ~ $#* 2){
	echo 'usage: vmount server mtpt' >[1=2]
	exit usage
}

server=$1
mtpt=$2

switch(`{uname}){
case Linux
	exec mount -o 'ro,timeo=100,rsize=8192,retrans=5,port=12049,mountport=12049,mountvers=3,nfsvers=3,nolock,soft,intr,udp' \
		$server:/dump $mtpt
case *
	echo 'cannot mount on' `{uname} >[1=2]
	exit usage
}