mirror of
https://github.com/luzifer-ansible/duplicity-backup.git
synced 2024-11-08 13:40:01 +00:00
Fix deprecation warning (Ansible 2.7)
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
4095d528de
commit
1f8b8b0256
2 changed files with 6 additions and 7 deletions
|
@ -5,7 +5,7 @@ galaxy_info:
|
||||||
Install and configure duplicity and duplicity-backup on host
|
Install and configure duplicity and duplicity-backup on host
|
||||||
|
|
||||||
license: Apache
|
license: Apache
|
||||||
min_ansible_version: 2.3
|
min_ansible_version: 2.7
|
||||||
|
|
||||||
platforms:
|
platforms:
|
||||||
- name: Ubuntu
|
- name: Ubuntu
|
||||||
|
|
|
@ -2,13 +2,12 @@
|
||||||
|
|
||||||
- name: Install required apt packages
|
- name: Install required apt packages
|
||||||
apt:
|
apt:
|
||||||
name: "{{ item }}"
|
name:
|
||||||
|
- duplicity
|
||||||
|
- gnupg
|
||||||
|
- lftp
|
||||||
|
- python-pip
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
with_items:
|
|
||||||
- duplicity
|
|
||||||
- gnupg
|
|
||||||
- lftp
|
|
||||||
- python-pip
|
|
||||||
|
|
||||||
- name: Install required pip packages
|
- name: Install required pip packages
|
||||||
pip:
|
pip:
|
||||||
|
|
Loading…
Reference in a new issue