ceph.yml 267 B

123456789101112
  1. ---
  2. - name: Install Ceph storage plugin dependencies
  3. yum:
  4. pkg: ceph-common
  5. state: installed
  6. when: ansible_pkg_mgr == "yum"
  7. - name: Install Ceph storage plugin dependencies
  8. dnf:
  9. pkg: ceph-common
  10. state: installed
  11. when: ansible_pkg_mgr == "dnf"