mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
bacbd4e9fc
commit
9874a49d1a
1 changed files with 13 additions and 0 deletions
|
@ -121,6 +121,19 @@ EXAMPLES = '''
|
||||||
fstype: xfs
|
fstype: xfs
|
||||||
opts: noatime
|
opts: noatime
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
- name: Unmount a mounted volume
|
||||||
|
mount:
|
||||||
|
path: /tmp/mnt-pnt
|
||||||
|
state: unmounted
|
||||||
|
|
||||||
|
- name: Mount and bind a volume
|
||||||
|
mount:
|
||||||
|
path: /system/new_volume/boot
|
||||||
|
src: /boot
|
||||||
|
opts: bind
|
||||||
|
state: mounted
|
||||||
|
fstype: none
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue