summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/storage_plugins/ceph.yml
blob: b5146dcac76023b4fdb761b4b42ee33d1100273f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
- name: Install Ceph storage plugin dependencies
  yum:
    pkg: ceph-common
    state: installed
  when: ansible_pkg_mgr == "yum"

- name: Install Ceph storage plugin dependencies
  dnf:
    pkg: ceph-common
    state: installed
  when: ansible_pkg_mgr == "dnf"