ceph-ansible/roles/ceph-radosgw/tasks/main.yml

27 lines
562 B
YAML
Raw Normal View History

---
2014-09-05 03:14:11 +08:00
- name: Copy RGW bootstrap key
copy: >
src=fetch/{{ fsid }}/etc/ceph/radosgw.{{ ansible_hostname }}.keyring
dest=/etc/ceph/radosgw.{{ ansible_hostname }}.keyring
owner=root
group=root
mode=600
2014-09-05 03:14:11 +08:00
when: cephx
- name: Set RGW bootstrap key permissions
file: >
path=/etc/ceph/radosgw.{{ ansible_hostname }}.keyring
mode=0600
owner=root
group=root
2014-09-05 03:14:11 +08:00
when: cephx
## Check OS family
#
- include: install_redhat.yml
when: ansible_os_family == 'RedHat'
- include: install_debian.yml
when: ansible_os_family == 'Debian'