ceph-ansible/roles/ceph-agent/tasks/pre_requisite.yml

27 lines
687 B
YAML

---
- name: determine if node is registered with subscription-manager.
command: subscription-manager identity
register: subscription
changed_when: false
always_run: true
when: ansible_os_family == 'RedHat'
- name: install dependencies
# XXX Determine what RH repository this will belong to so that it can be
# properly checked and errored if the repository is not enabled.
package:
name: rhscon-agent
state: present
tags:
- package-install
- name: create minion.d directory
file:
path: /etc/salt/minion.d
state: directory
- name: generate agent configuration file
template:
src: ceph_agent.j2
dest: /etc/salt/minion.d/ceph_agent.conf