[stable-10] Adjust YAML files (#10233) (#10244)

Adjust YAML files (#10233)

Adjust YAML files.

(cherry picked from commit eaa5e07b28)
This commit is contained in:
Felix Fontein 2025-06-15 10:02:03 +02:00 committed by GitHub
commit a9e892952d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
244 changed files with 7272 additions and 7329 deletions

View file

@ -14,8 +14,8 @@
- name: Assert the testvg size is 33554432B
assert:
that:
- "'33554432B' == cmd_result.stdout"
that:
- "'33554432B' == cmd_result.stdout"
- name: Increases size in file
command: "dd if=/dev/zero bs=8MiB count=1 of={{ remote_tmp_dir }}/img1 conv=notrunc oflag=append"
@ -25,14 +25,14 @@
- name: "Reruns lvg with pvresize:no"
lvg:
vg: testvg
pvs: "{{ loop_device1 }}"
pvresize: false
vg: testvg
pvs: "{{ loop_device1 }}"
pvresize: false
register: cmd_result
- assert:
that:
- cmd_result is not changed
- cmd_result is not changed
- name: Gets current vg size
shell: vgs -v testvg -o pv_size --noheading --units b | xargs
@ -40,21 +40,21 @@
- name: Assert the testvg size is still 33554432B
assert:
that:
- "'33554432B' == cmd_result.stdout"
that:
- "'33554432B' == cmd_result.stdout"
- name: "Reruns lvg with pvresize:yes and check_mode:yes"
lvg:
vg: testvg
pvs: "{{ loop_device1 }}"
pvresize: true
vg: testvg
pvs: "{{ loop_device1 }}"
pvresize: true
check_mode: true
register: cmd_result
- name: Assert that the module returned the state was changed
assert:
that:
- cmd_result is changed
- cmd_result is changed
- name: Gets current vg size
shell: vgs -v testvg -o pv_size --noheading --units b | xargs
@ -62,14 +62,14 @@
- name: Assert the testvg size is still 33554432B
assert:
that:
- "'33554432B' == cmd_result.stdout"
that:
- "'33554432B' == cmd_result.stdout"
- name: "Reruns lvg with pvresize:yes"
lvg:
vg: testvg
pvs: "{{ loop_device1 }}"
pvresize: true
vg: testvg
pvs: "{{ loop_device1 }}"
pvresize: true
- name: Gets current vg size
shell: vgs -v testvg -o pv_size --noheading --units b | xargs
@ -77,5 +77,5 @@
- name: Assert the testvg size is now 41943040B
assert:
that:
- "'41943040B' == cmd_result.stdout"
that:
- "'41943040B' == cmd_result.stdout"