paulbsd-salt/states/borg/install.sls

14 lines
312 B
Plaintext
Raw Normal View History

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 %}