Added unzip to packages to install

This commit is contained in:
Greg Szabo 2017-09-19 23:49:26 -04:00
parent f9ae600a61
commit 83f49f0dff
2 changed files with 7 additions and 2 deletions

View File

@ -44,6 +44,8 @@
with_items:
- python2-pip
- python-virtualenv
- unzip
- tar
- name: Install toml
when: ansible_os_family == "RedHat"

View File

@ -24,5 +24,8 @@
- name: Install package on Debian/Ubuntu
when: ansible_os_family == "Debian"
apt: "pkg=python-toml state=latest"
apt: "pkg={{item}} state=latest"
with_items:
- python-toml
- unzip
- tar