mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 07:05:27 +01:00
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:
commit
90385b97d8
2 changed files with 5 additions and 2 deletions
3
changelogs/fragments/288_mounts_options.yml
Normal file
3
changelogs/fragments/288_mounts_options.yml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
trivial:
|
||||
- mount - remove deprecated option from nfs example
|
||||
|
|
@ -172,7 +172,7 @@ EXAMPLES = r'''
|
|||
ansible.posix.mount:
|
||||
src: 192.168.1.100:/nfs/ssd/shared_data
|
||||
path: /mnt/shared_data
|
||||
opts: rw,sync,hard,intr
|
||||
opts: rw,sync,hard
|
||||
state: mounted
|
||||
fstype: nfs
|
||||
|
||||
|
|
@ -180,7 +180,7 @@ EXAMPLES = r'''
|
|||
ansible.posix.mount:
|
||||
src: 192.168.1.100:/nfs/ssd/shared_data
|
||||
path: /mnt/shared_data
|
||||
opts: rw,sync,hard,intr
|
||||
opts: rw,sync,hard
|
||||
boot: no
|
||||
state: mounted
|
||||
fstype: nfs
|
||||
|
|
|
|||
Loading…
Reference in a new issue