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
file:
path: "{{ item }}"
mode: 0600
owner: root
group: root
mode: "{{ key_mode }}"
owner: "{{ key_owner }}"
group: "{{ key_group }}"
with_items:
- "{{ ceph_keys.stdout_lines }}"
when: cephx