1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_restic_archiver.git synced 2024-08-16 10:09:49 +02:00
ansible_role_restic_archiver/tasks/configure.yml
Matthias Leutenegger f500327f59 FIX: init
2020-06-02 15:58:43 +02:00

20 lines
808 B
YAML

---
- name: Initialize repository
command: '{{ restic_install_path }}/restic init'
environment:
RESTIC_REPOSITORY: '{{ item.value.location }}'
RESTIC_PASSWORD: '{{ item.value.password }}'
AWS_ACCESS_KEY_ID: '{{ item.value.aws_access_key | default(omit) }}'
AWS_SECRET_ACCESS_KEY: '{{ item.value.aws_secret_access_key | default(omit) }}'
AWS_DEFAULT_REGION: '{{ item.value.aws_default_region | default(omit) }}'
no_log: true
register: restic_init
changed_when: "'created restic repository' in restic_init.stdout"
failed_when:
- restic_init.rc != 0
- not 'config file already exists' in restic_init.stderr
- not 'config already initialized' in restic_init.stderr
loop: "{{ restic_repos|dict2items }}"
when:
- item.value.init is defined
- item.value.init