This commit is contained in:
2021-04-18 13:56:36 +02:00
parent 2339cdd6e8
commit d22a65ad9a
74 changed files with 4289 additions and 537 deletions

View File

@ -0,0 +1,15 @@
---
- name: (config_files_mailsystem_scripts.yml) Copy config file templates mailsystem scripts
template:
src: '{{ item.src_path }}'
dest: '{{ item.dest_path }}'
owner: root
group: root
mode: '0644'
loop: "{{ template_files_mailsystem_script }}"
loop_control:
label: 'dest: {{ item.name }}'
when:
- template_files_mailsystem_script is defined
- template_files_mailsystem_script|length > 0