ansible-roles/kvm-host/tasks/lvm.yml

38 lines
1.1 KiB
YAML
Raw Normal View History

2023-12-22 11:26:08 +01:00
---
- name: 'Figure out if /etc/lvm/lvm.conf exists'
ansible.builtin.stat:
path: '/etc/lvm/lvm.conf'
follow: true
get_checksum: false
get_mime: false
get_attributes: false
ignore_errors: true
register: lvm_conf_stat
- name: Add LVM filter
ansible.builtin.lineinfile:
path: '/etc/lvm/lvm.conf'
insertafter: '# Configuration option devices/filter.'
regexp: '^\s*(#\s*)?filter\s*=\s*\[.*\]'
line: " filter = [ {{ lvm_filter | list | join(', ') }}, \"r|.*/|\" ]"
state: present
firstmatch: true
notify: 'Update initramfs'
when:
- lvm_conf_stat is succeeded
- lvm_conf_stat.stat.exists | bool
- name: Add LVM global_filter
ansible.builtin.lineinfile:
path: '/etc/lvm/lvm.conf'
insertafter: '# Configuration option devices/global_filter.'
regexp: '^\s*(#\s*)?global_filter\s*=\s*\[.*\]'
line: " global_filter = [ {{ lvm_filter | list | join(', ') }}, \"r|.*/|\" ]"
state: present
firstmatch: true
notify: 'Update initramfs'
when:
- lvm_conf_stat is succeeded
- lvm_conf_stat.stat.exists | bool