Merge "Make the apache-logs-conf role less verbose"

This commit is contained in:
Zuul 2018-02-14 03:17:23 +00:00 committed by Gerrit Code Review
commit e46d6ad2b7
1 changed files with 3 additions and 0 deletions

View File

@ -64,12 +64,14 @@
path: "{{ apache_config_paths[ansible_os_family] }}"
file_type: any
register: apache_configs
no_log: true
- name: Dereference configurations
stat:
path: "{{ item.path }}"
with_items: "{{ apache_configs.files }}"
register: apache_configs_deref
no_log: true
- name: Link configurations
file:
@ -78,3 +80,4 @@
state: hard
with_items: "{{ apache_configs_deref.results }}"
when: item.stat.isreg or item.stat.islnk
no_log: true