8 lines
289 B
Text
8 lines
289 B
Text
|
|
{% 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
|