mirror of
https://github.com/mrlesmithjr/ansible-manage-lvm.git
synced 2025-12-15 06:14:31 +03:00
Merge branch 'fsopts' of github.com:Aethylred/ansible-manage-lvm into Aethylred-fsopts
This commit is contained in:
@@ -31,6 +31,8 @@ lvm_groups: []
|
|||||||
# size: 40g
|
# size: 40g
|
||||||
# create: true
|
# create: true
|
||||||
# filesystem: ext4
|
# filesystem: ext4
|
||||||
|
# # Defines options passed to the filesystem creation command
|
||||||
|
# fsopts:
|
||||||
# mount: true
|
# mount: true
|
||||||
# mntp: /
|
# mntp: /
|
||||||
# - vgname: test-vg
|
# - vgname: test-vg
|
||||||
@@ -57,6 +59,20 @@ lvm_groups: []
|
|||||||
# lvnames:
|
# lvnames:
|
||||||
# # Set to None to only create LVM VG w/out creating LVM LVOLS
|
# # Set to None to only create LVM VG w/out creating LVM LVOLS
|
||||||
# - None
|
# - None
|
||||||
|
# # Using fsopts to create a docker compatible xfs volume
|
||||||
|
# - vgname: docker-volumes
|
||||||
|
# disks:
|
||||||
|
# - /dev/vdc
|
||||||
|
# - /dev/vdd
|
||||||
|
# create: true
|
||||||
|
# lvnames:
|
||||||
|
# - lvname: docker_1
|
||||||
|
# size: 100%FREE
|
||||||
|
# create: true
|
||||||
|
# filesystem: xfs
|
||||||
|
# fsopts: -n ftype=1
|
||||||
|
# mount: true
|
||||||
|
# mntp: /var/lib/docker
|
||||||
|
|
||||||
# Defines if LVM will be managed by role
|
# Defines if LVM will be managed by role
|
||||||
# default is false to ensure nothing is changed by accident.
|
# default is false to ensure nothing is changed by accident.
|
||||||
|
|||||||
@@ -52,6 +52,7 @@
|
|||||||
filesystem:
|
filesystem:
|
||||||
fstype: "{{ lv.filesystem }}"
|
fstype: "{{ lv.filesystem }}"
|
||||||
dev: "/dev/{{ vg.vgname }}/{{ lv.lvname }}"
|
dev: "/dev/{{ vg.vgname }}/{{ lv.lvname }}"
|
||||||
|
opts: "{{ lv.fsopts | default(omit) }}"
|
||||||
become: true
|
become: true
|
||||||
when:
|
when:
|
||||||
- mountedxfs is failed
|
- mountedxfs is failed
|
||||||
|
|||||||
Reference in New Issue
Block a user