fix: problem on the permissions of config file
This commit is contained in:
parent
45e7e2b509
commit
3632f7a01d
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ def test_config_file(host):
|
||||||
assert path.exists
|
assert path.exists
|
||||||
assert path.is_file
|
assert path.is_file
|
||||||
assert path.user == 'root'
|
assert path.user == 'root'
|
||||||
assert path.group == 'root'
|
assert path.group == 'kibana'
|
||||||
assert path.mode == 0o644
|
assert path.mode == 0o644
|
||||||
|
|
||||||
def test_service(host):
|
def test_service(host):
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
content: '{{ kibana_config | to_yaml }}'
|
content: '{{ kibana_config | to_yaml }}'
|
||||||
dest: /etc/kibana/kibana.yml
|
dest: /etc/kibana/kibana.yml
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: kibana
|
||||||
mode: 0640
|
mode: 0640
|
||||||
notify: Restart kibana
|
notify: Restart kibana
|
||||||
tags: kibana
|
tags: kibana
|
||||||
|
|
Loading…
Reference in a new issue