Merge pull request #50 from nginxinc/(feature)/install-prerequisites

Install Debian dependencies
This commit is contained in:
Alessandro Fael Garcia 2018-08-03 11:23:25 -07:00 committed by GitHub
commit 795e5a20c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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