From 4a18f5fcfc40b6c416186c6f32b9e23253f4c538 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Mon, 30 Oct 2017 15:31:04 -0500 Subject: [PATCH] test: when creating the /dev/sdc2 partition specify label as gpt ansible==2.4 requires that label be set to gpt, or it will be defaulted to msdos. Signed-off-by: Andrew Schoen (cherry picked from commit 37a48209ccf702a817b445e8b6164e38b60ea708) --- tests/functional/lvm_setup.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/functional/lvm_setup.yml b/tests/functional/lvm_setup.yml index 51f90da76..21669cc97 100644 --- a/tests/functional/lvm_setup.yml +++ b/tests/functional/lvm_setup.yml @@ -43,8 +43,6 @@ part_start: 0% part_end: 50% unit: '%' - # this is a brand-new, unlabeled disk, so add the label - # only for the first partition label: gpt state: present @@ -56,6 +54,7 @@ part_end: 100% unit: '%' state: present + label: gpt - name: create journals vg from /dev/sdc2 lvg: -- 2.39.5