Merge pull request #288 from nerrehmit/main

Remove deprecated option from nfs mount example

SUMMARY
This removes the intr option from the documentation example for nfs mounts.
ISSUE TYPE

Docs Pull Request

COMPONENT NAME
mount.py
ADDITIONAL INFORMATION
According to the nfs manpage the intr/ nointr option has been deprecated with Kernel 2.6.25 which was released in April 2008 wiki
Even RHEL 6.10 which is already on Extended life cycle support is using a newer 2.6 Kernel. https://access.redhat.com/articles/3078
This does not change any module functionality. It simply removes the option from the nfs mount example.

Reviewed-by: None <None>
This commit is contained in:
ansible-zuul[bot] 2021-11-12 18:28:25 +00:00 committed by GitHub
commit 90385b97d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -0,0 +1,3 @@
---
trivial:
- mount - remove deprecated option from nfs example

View file

@ -172,7 +172,7 @@ EXAMPLES = r'''
ansible.posix.mount: ansible.posix.mount:
src: 192.168.1.100:/nfs/ssd/shared_data src: 192.168.1.100:/nfs/ssd/shared_data
path: /mnt/shared_data path: /mnt/shared_data
opts: rw,sync,hard,intr opts: rw,sync,hard
state: mounted state: mounted
fstype: nfs fstype: nfs
@ -180,7 +180,7 @@ EXAMPLES = r'''
ansible.posix.mount: ansible.posix.mount:
src: 192.168.1.100:/nfs/ssd/shared_data src: 192.168.1.100:/nfs/ssd/shared_data
path: /mnt/shared_data path: /mnt/shared_data
opts: rw,sync,hard,intr opts: rw,sync,hard
boot: no boot: no
state: mounted state: mounted
fstype: nfs fstype: nfs