From b72f9d636d53246805d15a733bf80d142a7c945a Mon Sep 17 00:00:00 2001 From: Brian Rosmaita Date: Mon, 11 Jul 2022 13:46:45 -0400 Subject: [PATCH] Don't use yum to install ceph Use the ansible builtin 'package' module instead. Change-Id: I244c1896a3c17b43496bef09ee4c8ae76522f565 (cherry picked from commit 30af4ccedff152c5d3fa3316f8bc5858faf042c2) (cherry picked from commit 29ee0633595b4611a5f001f0a1ab9874653f93d6) (cherry picked from commit 6c4f41ef09d742db6a07862a8daf12ace7a3decb) (cherry picked from commit 63eb58dff1858af8482c194ae0a68fc8336fd5a9) --- playbooks/setup-ceph.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/setup-ceph.yaml b/playbooks/setup-ceph.yaml index 9da93ce..aa6b0e8 100644 --- a/playbooks/setup-ceph.yaml +++ b/playbooks/setup-ceph.yaml @@ -34,7 +34,7 @@ state: absent - name: Install ceph requirements - yum: + package: name: - ceph-common - python3-rados @@ -42,7 +42,7 @@ state: present - name: Install Docker - yum: + package: name: 'docker.io' state: present