backup/tasks/requirements.yml

12 lines
204 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']