mirror of https://github.com/ceph/ceph-ansible.git
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 <aschoen@redhat.com>pull/2124/head
parent
b3c9de90f4
commit
37a48209cc
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue