backup/tasks/requirements.yml

17 lines
311 B
YAML
Raw Normal View History

2022-09-07 17:53:38 +02:00
---
- name: apt update cache
apt:
update_cache: yes
cache_valid_time: 86400
2023-03-07 11:28:40 +01:00
- name: Install package for s3 backend
2023-03-07 11:31:25 +01:00
apt:
name: python3-boto
state: present
2023-03-07 11:28:40 +01:00
tags: ['backup_duplicity']
2023-03-07 11:33:39 +01:00
- name: Install package for s3 backend
ansible.builtin.pip:
name: boto
tags: ['backup_duplicity']