blob: 09095d3d028b7784936a2d227cc3237a857aa62a (
plain)
1
2
3
4
5
6
|
#! /usr/bin/env sh
if [ "$(id -u)" -ne 0 ]; then
echo 'This script must be run by root.' >&2
exit 1
fi
mount -t nfs4 -o noatime,nodiratime,rw,hard,fsc,proto=tcp,timeo=600,retrans=2,nfsvers=4,minorversion=2 moyo:$1 $2
|