2026-02-27 15:09:25 -07:00
|
|
|
---
|
|
|
|
|
- name: Ensure restic local repo directory exists
|
|
|
|
|
file:
|
|
|
|
|
path: "{{ restic_repo }}"
|
|
|
|
|
state: directory
|
|
|
|
|
owner: root
|
|
|
|
|
group: root
|
|
|
|
|
mode: "0700"
|
|
|
|
|
when: restic_repo is defined and restic_repo.startswith('/') # only local path
|
|
|
|
|
|
2026-03-01 21:24:45 -07:00
|
|
|
- ansible.builtin.include_tasks: init.yml
|
2026-02-27 15:09:25 -07:00
|
|
|
|