From: Alfredo Deza Date: Tue, 9 Oct 2018 17:40:38 +0000 (-0400) Subject: tests: install lvm2 before setting up ceph-volume/LVM tests X-Git-Tag: v3.2.0beta4~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3e488e8298a0c8ec4ec98317a1d7f1efc4926257;p=ceph-ansible.git tests: install lvm2 before setting up ceph-volume/LVM tests Signed-off-by: Alfredo Deza --- diff --git a/tests/functional/lvm_setup.yml b/tests/functional/lvm_setup.yml index 280c2756d..f1f4801d6 100644 --- a/tests/functional/lvm_setup.yml +++ b/tests/functional/lvm_setup.yml @@ -5,6 +5,12 @@ become: yes tasks: + # Some images may not have lvm2 installed + - name: install lvm2 + package: + name: lvm2 + state: present + - name: create physical volume command: pvcreate /dev/sdb failed_when: false