Update elasticsearch-xpack.yml
Refactor file module and fix file mode syntax to support octal number format
This commit is contained in:
parent
3d7052e5e7
commit
444d9f473b
1 changed files with 6 additions and 1 deletions
|
|
@ -8,4 +8,9 @@
|
||||||
#Make sure elasticsearch.keystore has correct Permissions
|
#Make sure elasticsearch.keystore has correct Permissions
|
||||||
- name: Set elasticsearch.keystore Permissions
|
- name: Set elasticsearch.keystore Permissions
|
||||||
become: yes
|
become: yes
|
||||||
file: state=file path={{ es_conf_dir }}/elasticsearch.keystore owner=root group={{ es_group }} mode=0660
|
file:
|
||||||
|
state: file
|
||||||
|
path: {{ es_conf_dir }}/elasticsearch.keystore
|
||||||
|
owner: root
|
||||||
|
group: {{ es_group }}
|
||||||
|
mode: "0660"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue