ceph-osd: use fact logic to set permissions

Signed-off-by: Sébastien Han <seb@redhat.com>
pull/554/head
Sébastien Han 2016-02-21 18:25:42 +01:00
parent 17fb38294e
commit 3ce0621b44
2 changed files with 10 additions and 35 deletions

View File

@ -38,7 +38,6 @@
group: "{{ key_group }}" group: "{{ key_group }}"
when: cephx when: cephx
- name: activate metadata server with upstart - name: activate metadata server with upstart
file: file:
path: /var/lib/ceph/mds/ceph-{{ ansible_hostname }}/{{ item }} path: /var/lib/ceph/mds/ceph-{{ ansible_hostname }}/{{ item }}

View File

@ -11,46 +11,22 @@
state: present state: present
when: ansible_os_family == 'RedHat' when: ansible_os_family == 'RedHat'
- name: create bootstrap-osd directory (for or after infernalis release) - name: create bootstrap-osd directory
file: file:
path: /var/lib/ceph/bootstrap-osd/ path: /var/lib/ceph/bootstrap-osd/
state: directory state: directory
owner: ceph owner: "{{ dir_owner }}"
group: ceph group: "{{ dir_group }}"
mode: 0755 mode: "{{ dir_mode }}"
when: when:
cephx and cephx
is_ceph_infernalis
- name: create bootstrap-osd directory (before infernalis release) - name: copy osd bootstrap key
file:
path: /var/lib/ceph/bootstrap-osd/
state: directory
owner: root
group: root
mode: 0755
when:
cephx and
not is_ceph_infernalis
- name: copy osd bootstrap key (for or after infernalis release)
copy: copy:
src: "{{ fetch_directory }}/{{ fsid }}/var/lib/ceph/bootstrap-osd/ceph.keyring" src: "{{ fetch_directory }}/{{ fsid }}/var/lib/ceph/bootstrap-osd/ceph.keyring"
dest: /var/lib/ceph/bootstrap-osd/ceph.keyring dest: /var/lib/ceph/bootstrap-osd/ceph.keyring
owner: ceph owner: "{{ key_owner }}"
group: ceph group: "{{ key_group }}"
mode: 0600 mode: "{{ key_mode }}"
when: when:
cephx and cephx
is_ceph_infernalis
- name: copy osd bootstrap key (before infernalis release)
copy:
src: "{{ fetch_directory }}/{{ fsid }}/var/lib/ceph/bootstrap-osd/ceph.keyring"
dest: /var/lib/ceph/bootstrap-osd/ceph.keyring
owner: root
group: root
mode: 600
when:
cephx and
not is_ceph_infernalis