ceph-mon: fix ceph keys permissions

Certain daemons will not start because of the wrong permissions.

Signed-off-by: Sébastien Han <seb@redhat.com>
pull/677/head
Sébastien Han 2016-04-04 00:36:59 +02:00
parent 4b93fc9dbd
commit 2700552186
1 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@
- name: set keys permissions - name: set keys permissions
file: file:
path: "{{ item }}" path: "{{ item }}"
mode: 0600 mode: "{{ key_mode }}"
owner: root owner: "{{ key_owner }}"
group: root group: "{{ key_group }}"
with_items: with_items:
- "{{ ceph_keys.stdout_lines }}" - "{{ ceph_keys.stdout_lines }}"
when: cephx when: cephx