1
0
Fork 0
This commit is contained in:
Florian RICHER 2023-06-09 02:23:19 +02:00
parent 31744304a1
commit 18ef613556
7 changed files with 33 additions and 0 deletions
roles/borg/tasks

13
roles/borg/tasks/base.yml Normal file
View file

@ -0,0 +1,13 @@
---
- name: Copy template conf
ansible.builtin.template:
backup: true
src: "{{ item.src }}"
dest: "/usr/bin/{{ item.dest }}"
group: root
owner: root
mode: u=rwx,g=rx,o=rx
loop:
- { src: 'backup.j2', dest: 'backup' }
become: true