From d20512ce36d36e28f3416404187bd880a0e0cb61 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Fri, 26 Jul 2024 09:26:00 -0600 Subject: [PATCH] test: show extra pvcreate and vgcreate output --- tests/tests_lvm_pool_pv_grow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests_lvm_pool_pv_grow.yml b/tests/tests_lvm_pool_pv_grow.yml index b0543060..f6e3324a 100644 --- a/tests/tests_lvm_pool_pv_grow.yml +++ b/tests/tests_lvm_pool_pv_grow.yml @@ -33,14 +33,14 @@ min_size: "10g" - name: Create PV with a space to grow - command: "pvcreate --setphysicalvolumesize {{ pv_size }} /dev/{{ unused_disks[0] }}" + command: pvcreate -vvvvvv --setphysicalvolumesize {{ pv_size }} /dev/{{ unused_disks[0] }} register: pvcreate_output changed_when: pvcreate_output.rc != 0 # VG has to be present, the role otherwise automatically reformats empty PV, # taking all available space - name: Create VG - command: "vgcreate foo /dev/{{ unused_disks[0] }}" + command: vgcreate -vvvvvv foo /dev/{{ unused_disks[0] }} register: vgcreate_output changed_when: vgcreate_output.rc != 0