diff options
author | Russ Cox <rsc@swtch.com> | 2008-07-09 14:36:12 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2008-07-09 14:36:12 -0400 |
commit | 23b8abcc9e7681a9df2560c4535f982591764b6f (patch) | |
tree | 0e8c1cf7878b3b78fc7ea3ce9a9ade374ecd455e /bin/vmount | |
parent | 2fb736b2e153edbcff99ecaede8ab26919dde3d6 (diff) | |
download | plan9port-23b8abcc9e7681a9df2560c4535f982591764b6f.tar.gz plan9port-23b8abcc9e7681a9df2560c4535f982591764b6f.tar.bz2 plan9port-23b8abcc9e7681a9df2560c4535f982591764b6f.zip |
vmount: add -t nfs on Linux
Diffstat (limited to 'bin/vmount')
-rwxr-xr-x | bin/vmount | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ mtpt=$2 switch(`{uname}){ case Linux - exec mount -o 'ro,timeo=100,rsize=8192,retrans=5,port=2049,mountport=2049,mountvers=3,nfsvers=3,nolock,soft,intr,udp' \ + exec mount -t nfs -o 'ro,timeo=100,rsize=8192,retrans=5,port=2049,mountport=2049,mountvers=3,nfsvers=3,nolock,soft,intr,udp' \ $server:/dump $mtpt case * exec vmount0 -h 00 $server $mtpt |