Merge pull request #3990 from HiassofT/le10-init-hard-nfs-mount

init: don't mount nfs shares with soft option by default
This commit is contained in:
MilhouseVH 2019-11-29 21:42:24 +00:00 committed by GitHub
commit c96889de82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -203,7 +203,7 @@ mount_nfs() {
[ "$NFS_OPTIONS" = "$1" ] && NFS_OPTIONS=
mount_common "$NFS_EXPORT" "$2" "$3,nolock,soft,timeo=3,retrans=2,rsize=32768,wsize=32768,$NFS_OPTIONS" "nfs"
mount_common "$NFS_EXPORT" "$2" "$3,nolock,rsize=32768,wsize=32768,$NFS_OPTIONS" "nfs"
}
mount_ubifs() {