Don't use yum to install ceph

Use the ansible builtin 'package' module instead.

Change-Id: I244c1896a3c17b43496bef09ee4c8ae76522f565
This commit is contained in:
Brian Rosmaita 2022-07-11 13:46:45 -04:00
parent 6815d80445
commit 30af4ccedf
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