mg
e63aabf5d9
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#226 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
15 lines
314 B
YAML
15 lines
314 B
YAML
---
|
|
- 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
|
|
owner: root
|
|
group: root
|
|
mode: 0777
|