mirror of
https://github.com/luzifer-ansible/duplicity-backup.git
synced 2024-11-09 22:20:00 +00:00
Add support for Ubuntu 20.04
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
eab873fbf1
commit
78a8616bb0
1 changed files with 11 additions and 0 deletions
|
@ -8,6 +8,17 @@
|
||||||
- lftp
|
- lftp
|
||||||
- python-pip
|
- python-pip
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version != '20.04'
|
||||||
|
|
||||||
|
- name: Install required apt packages
|
||||||
|
apt:
|
||||||
|
name:
|
||||||
|
- duplicity
|
||||||
|
- gnupg
|
||||||
|
- lftp
|
||||||
|
- python3-pip
|
||||||
|
update_cache: yes
|
||||||
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '20.04'
|
||||||
|
|
||||||
- name: Install required pip package
|
- name: Install required pip package
|
||||||
pip:
|
pip:
|
||||||
|
|
Loading…
Reference in a new issue