1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Don't use with_items: deprecated

This commit is contained in:
Aidan Fitzgerald 2018-10-08 20:01:15 -04:00 committed by Aidan Fitzgerald
parent 7920722aa3
commit f6ca22f8a0

View file

@ -1,8 +1,6 @@
- name: Install packages required by Lokole - name: Install packages required by Lokole
apt: apt:
name: "{{ item }}" name:
state: present
with_items:
- python3 - python3
- python3-pip - python3-pip
- python3-venv - python3-venv
@ -10,6 +8,7 @@
- libffi-dev - libffi-dev
- libssl-dev - libssl-dev
- bcrypt - bcrypt
state: present
tags: tags:
- install - install