2020-09-22 20:06:32 +02:00
|
|
|
---
|
|
|
|
{%- from "borg/map.jinja" import borg with context %}
|
|
|
|
borg-working-dir:
|
|
|
|
file.directory:
|
|
|
|
- name: {{ borg.working_dir }}
|
2020-10-10 23:21:29 +02:00
|
|
|
- mode: 0700
|
2020-09-22 20:06:32 +02:00
|
|
|
|
|
|
|
{% for dir in ['bin', 'logs', 'scripts'] %}
|
|
|
|
borg-working-dir-{{ dir }}:
|
|
|
|
file.directory:
|
|
|
|
- name: {{ borg.working_dir }}/{{ dir }}
|
2020-10-10 23:21:29 +02:00
|
|
|
- mode: 0700
|
2020-09-22 20:06:32 +02:00
|
|
|
{% endfor %}
|