From dec22b4762b7d695f6ff6e552a3707ddec9f87a4 Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Tue, 29 Nov 2022 23:03:37 +0100 Subject: [PATCH] copr: install lvm2 package on copr-backend --- roles/copr/backend/tasks/mount_fs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/copr/backend/tasks/mount_fs.yml b/roles/copr/backend/tasks/mount_fs.yml index 3b6e6ab5d7..77023154a2 100644 --- a/roles/copr/backend/tasks/mount_fs.yml +++ b/roles/copr/backend/tasks/mount_fs.yml @@ -1,4 +1,7 @@ --- +- name: install the lvm2 package + dnf: state=present name=lvm2 + - name: early stat for the ext4 filesystem stat: path=/dev/disk/by-label/copr-repo register: stat_repo_fs_early