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,17 @@
---
- name: (symlink_files.yml) Symlink files
file:
src: '{{ item.src_path }}'
dest: '{{ item.dest_path }}'
owner: root
group: root
state: link
loop: "{{ symlink_files }}"
loop_control:
label: 'dest: {{ item.name }}'
when:
- symlink_files is defined
- symlink_files|length > 0
tags:
- symlink-files