19 lines
516 B
YAML
19 lines
516 B
YAML
---
|
|
- name: "Packages | Add backports repository"
|
|
ansible.builtin.apt_repository:
|
|
repo: "deb {{ apt_base_url }} {{ ansible_distribution_release }}-backports main"
|
|
state: present
|
|
|
|
- name: "Packages | Install borgbackup and borgmatic"
|
|
ansible.builtin.apt:
|
|
pkg:
|
|
- borgbackup
|
|
- borgmatic
|
|
- rsync
|
|
default_release: "{{ ansible_distribution_release }}-backports"
|
|
update_cache: true
|
|
|
|
- name: "Packages | Install dependencies"
|
|
ansible.builtin.apt:
|
|
pkg:
|
|
- python3-pexpect
|