backup/tasks/requirements.yml
2023-03-07 11:31:25 +01:00

12 lines
204 B
YAML

---
- name: apt update cache
apt:
update_cache: yes
cache_valid_time: 86400
- name: Install package for s3 backend
apt:
name: python3-boto
state: present
tags: ['backup_duplicity']