ceph-ansible/roles/ceph-common/tasks/RedHat.yml

34 lines
1.0 KiB
YAML
Raw Normal View History

---
## Common to all the Ceph RedHat nodes
#
- name: Fail on unsupported system
fail: msg="System not supported {{ ansible_system }}"
when: ansible_system not in ['Linux']
- name: Fail on unsupported architecture
2014-06-03 03:00:43 +08:00
fail: msg="Architecture not supported {{ ansible_architecture }}"
when: ansible_architecture not in ['x86_64']
- name: Fail on unsupported distribution
fail: msg="Distribution not supported {{ ansible_os_family }}"
when: ansible_os_family not in ['Debian', 'RedHat']
- name: Install dependancies
yum: name={{ item }} state=present
with_items:
- python-pycurl
- ntp
- name: Install the Ceph key
rpm_key: key=cephrelease.asc state=present
- name: Add Ceph repository
command: rpm -U http://ceph.com/rpm-{{ ceph_release }}/{{ redhat_distro }}/noarch/ceph-release-1-0.el6.noarch.rpm creates=/etc/yum.repos.d/ceph.repo
- name: Install Ceph
yum: name=ceph state=latest
- name: Generate Ceph configuration file
template: src=roles/common/templates/ceph.conf.j2 dest=/etc/ceph/ceph.conf owner=root group=root mode=0644