Skip to content

Commit fd53df3

Browse files
author
Gustavo Muniz do Carmo
committed
reqs install
1 parent 6ebe9da commit fd53df3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

tasks/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
---
2-
- name: Install PIP
2+
- name: Install required packages
33
apt:
4-
name: python3-pip
4+
name: "{{ item }}"
5+
loop:
6+
- libssl-dev
7+
- libffi-dev
8+
- python3-pip
59
- name: Install Ansible
610
pip:
711
name: ansible

tests/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
- hosts: containers
3+
gather_facts: no
34
roles:
45
- ansible
56
tasks:

0 commit comments

Comments
 (0)