From: Ilya Dryomov Date: Tue, 1 Oct 2024 10:57:09 +0000 (+0200) Subject: testnode: move removing openmpi-common to apt_systems.yml X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F761%2Fhead;p=ceph-cm-ansible.git testnode: move removing openmpi-common to apt_systems.yml Otherwise, because it's placed in ubuntu.yml, it resets packages_to_remove list defined in apt_systems.yml to just openmpi-common and commit 701d3594d220 ("testnode: remove tgt") doesn't take effect. While at it, fix a typo in the comment -- it's mpich. Signed-off-by: Ilya Dryomov --- diff --git a/roles/testnode/vars/apt_systems.yml b/roles/testnode/vars/apt_systems.yml index 20bc4bef..bdcda516 100644 --- a/roles/testnode/vars/apt_systems.yml +++ b/roles/testnode/vars/apt_systems.yml @@ -6,6 +6,8 @@ nfs_service: nfs-kernel-server packages_to_remove: # multipath interferes with krbd tests - multipath-tools + # openmpi-common conflicts with mpich stuff + - openmpi-common # tgt interferes with ceph-iscsi tests - tgt diff --git a/roles/testnode/vars/ubuntu.yml b/roles/testnode/vars/ubuntu.yml index 9c6c83b9..36ee10aa 100644 --- a/roles/testnode/vars/ubuntu.yml +++ b/roles/testnode/vars/ubuntu.yml @@ -92,7 +92,3 @@ non_aarch64_packages_to_upgrade: no_recommended_packages: - collectl - -packages_to_remove: - # openmpi-common conflicts with mpitch stuff - - openmpi-common