3e303bea4c
* Refactor integration test for lvg module to introduce grow/reduce test * List correctly current PV in lvg module: fix lvg reduce Previous behaviour was to only take into account PV passed in 'pvs' argument. This lead to reduce not working as expecting: * with state=present and list of wanted pvs, lvg found only the pvs to add or already present and ignored the pv to remove (obviously absent from the list of given PV) * with state=absent and a pv to remove, lvg found that the remaining pvs list is empty (ignoring possible other PV in the vg) and decides to remove the vg entirely (as supposely no PV are left anymore to store lvm metadata) * Add changelog fragment
13 lines
504 B
YAML
13 lines
504 B
YAML
- name: "Create files to use as a disk devices"
|
|
command: "dd if=/dev/zero of={{ ansible_user_dir }}/ansible_testing/img{{ item }} bs=1M count=10"
|
|
with_sequence: 'count=2'
|
|
|
|
- name: "Create loop device for file"
|
|
command: "losetup --show -f {{ ansible_user_dir }}/ansible_testing/img{{ item }}"
|
|
with_sequence: 'count=2'
|
|
register: loop_devices
|
|
|
|
- name: "Affect name on disk to work on"
|
|
set_fact:
|
|
loop_device1: "{{ loop_devices.results[0] }}"
|
|
loop_device2: "{{ loop_devices.results[1] }}"
|