Don't use yum to install ceph

Use the ansible builtin 'package' module instead.

Change-Id: I244c1896a3c17b43496bef09ee4c8ae76522f565
(cherry picked from commit 30af4ccedf)
This commit is contained in:
Brian Rosmaita 2022-07-11 13:46:45 -04:00 committed by Luigi Toscano
parent 5f690e020e
commit 29ee063359
1 changed files with 2 additions and 2 deletions

View File

@ -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