Browse Source

Added unzip to packages to install

pull/1943/head
Greg Szabo 7 years ago
parent
commit
83f49f0dff
2 changed files with 7 additions and 2 deletions
  1. +2
    -0
      ansible/roles/install/tasks/centos.yml
  2. +5
    -2
      ansible/roles/install/tasks/debian.yml

+ 2
- 0
ansible/roles/install/tasks/centos.yml View File

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


+ 5
- 2
ansible/roles/install/tasks/debian.yml 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

Loading…
Cancel
Save