linderhof/roles/restic/templates/restic.env.j2

8 lines
289 B
Text
Raw Normal View History

{% if restic_backend_type == 'sftp' %}
export RESTIC_REPOSITORY="sftp:{{ restic_user }}@{{ restic_host }}:{{ restic_remote_path }}"
{% else %}
export RESTIC_REPOSITORY="{{ restic_repo }}"
{% endif %}
export RESTIC_PASSWORD="{{ restic_password }}"
export RESTIC_CACHE_DIR=/var/cache/restic