Add an example for mounting NFS. (#64974)

This commit is contained in:
majerus1223 2019-11-26 12:30:37 -06:00 committed by Sandra McCann
parent 12670f5a80
commit 2460470ae7

View file

@ -145,6 +145,14 @@ EXAMPLES = r'''
opts: bind
state: mounted
fstype: none
- name: Mount an NFS volume
mount:
src: 192.168.1.100:/nfs/ssd/shared_data
path: /mnt/shared_data
opts: rw,sync,hard,intr
state: mounted
fstype: nfs
'''