library/roles/dnet_user_services_perms/tasks/dnet-additional-packages.yml: Ansible 2 compatibility.

This commit is contained in:
Andrea Dell'Amico 2016-08-01 17:22:35 +02:00
parent 064b563c29
commit f79346cf95
1 changed files with 2 additions and 4 deletions

View File

@ -1,13 +1,11 @@
---
- name: Install additional packages, if needed
apt: pkg={{ item }} state=installed
with_items: '{{ dnet_additional_packages }}'
when: dnet_additional_packages is defined
with_items: '{{ dnet_additional_packages | default ([]) }}'
tags: ['dnet', 'pkgs']
- name: Install additional python modules, if needed
pip: name={{ item }} state=present
with_items: '{{ dnet_additional_python_modules }}'
when: dnet_additional_python_modules is defined
with_items: '{{ dnet_additional_python_modules | default ([]) }}'
tags: ['dnet', 'pkgs']