Install Debian dependencies

Fixes #44
This commit is contained in:
Alessandro Fael Garcia 2018-08-02 15:56:25 -07:00
parent 91bd842e9e
commit 19a080925b
3 changed files with 12 additions and 0 deletions

View File

@ -1,4 +1,6 @@
---
- import_tasks: prerequisites/install-prerequisites.yml
- import_tasks: keys/apt-key.yml
when: ansible_os_family == "Debian"

View File

@ -0,0 +1,3 @@
---
- import_tasks: setup-debian.yml
when: ansible_os_family == "Debian"

View File

@ -0,0 +1,7 @@
---
- Name: "(Install: Debian/Ubuntu) Install Required Debian and Ubuntu Dependencies"
apt:
name: "{{ item }}"
with_items:
- apt-transport-https
- dirmngr