Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added nfsvers=3 as client_nfs_options for RedHat #143

Merged
merged 1 commit into from
Apr 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
added nfsvers=3 as client_nfs_options for RedHat
CentOS 7.9 mount as nfs 4 if no options are specified
  • Loading branch information
veronesip committed Apr 15, 2022
commit 600ad43ff244dff196581d359d53e5fe5915700e
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
case $facts['os']['release']['major'] {
'7': {
$client_idmapd_setting = ['']
$client_nfs_options = 'tcp,nolock,rsize=32768,wsize=32768,intr,noatime,actimeo=3'
$client_nfs_options = 'tcp,nolock,rsize=32768,wsize=32768,intr,noatime,nfsvers=3,actimeo=3'
$client_services_enable = true
$client_gssdopt_name = 'RPCGSSDARGS'
if versioncmp($facts['os']['release']['full'], '7.5') < 0 {
Expand Down