Don't set recurse on config folders

A small number of services set the recurse flag when they create
their config directory. This can change permission of files within
the directory, which are later set back to the original state. The
side effect is that the service is then restarted, even though the
net change to the config files amounts to nothing. The expected
behaviour is that a service only restarts if the config *has*
changed. This patch fixes this issue.

Change-Id: Ib6f1ca7b416247f8d455fb25892f4a3b27de03ba
Closes-Bug: 1800480
This commit is contained in:
Doug Szumski 2018-10-29 14:16:51 +00:00
parent 5868bb2a78
commit 4896031757
6 changed files with 0 additions and 6 deletions

View File

@ -16,7 +16,6 @@
file:
path: "{{ node_config_directory }}/{{ item }}"
state: "directory"
recurse: yes
become: true
with_items:
- "fluentd"

View File

@ -7,7 +7,6 @@
owner: "{{ config_owner_user }}"
group: "{{ config_owner_group }}"
mode: "0770"
recurse: yes
when:
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool

View File

@ -6,7 +6,6 @@
owner: "{{ config_owner_user }}"
group: "{{ config_owner_group }}"
mode: "0770"
recurse: yes
become: true
when:
- inventory_hostname in groups[item.value.group]

View File

@ -6,7 +6,6 @@
owner: "{{ config_owner_user }}"
group: "{{ config_owner_group }}"
mode: "0770"
recurse: yes
become: true
when:
- inventory_hostname in groups[item.value.group]

View File

@ -6,7 +6,6 @@
owner: "{{ config_owner_user }}"
group: "{{ config_owner_group }}"
mode: "0770"
recurse: yes
become: true
when:
- inventory_hostname in groups[item.value.group]

View File

@ -6,7 +6,6 @@
owner: "{{ config_owner_user }}"
group: "{{ config_owner_group }}"
mode: "0770"
recurse: yes
become: true
when:
- inventory_hostname in groups[item.value.group]