2021-10-20 19:59:16 +02:00
|
|
|
---
|
|
|
|
- name: create /etc/restic
|
|
|
|
become: yes
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: /etc/restic
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: create restic mount-directory
|
|
|
|
become: yes
|
|
|
|
ansible.builtin.file:
|
|
|
|
path: "{{ restic_mount }}"
|
|
|
|
state: directory
|
2022-02-09 10:06:37 +01:00
|
|
|
owner: "{{ restic_user }}"
|
|
|
|
group: "{{ restic_user_group }}"
|
|
|
|
mode: 0755
|