9be1799beb
Throughout the project overtime some of these file permissions have changed to have an executable bit. They should not have this bit set. TrivialFix Change-Id: I1748b5bde813a0fcac36aeecdfd83245b8ee5be3
21 lines
498 B
YAML
21 lines
498 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "rsyslog"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "rsyslog"
|
|
|
|
- name: Copying over rsyslog.conf
|
|
template:
|
|
src: "rsyslog.conf.j2"
|
|
dest: "{{ node_config_directory }}/rsyslog/rsyslog.conf"
|