1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Consolidating package lines for virtualenv install in test deps integration

This commit is contained in:
James Cammarata 2015-12-17 11:15:06 -05:00
parent cf3d503f79
commit 26bbabcfba

View file

@ -13,14 +13,6 @@
ignore_errors: true ignore_errors: true
when: ansible_os_family == 'Debian' when: ansible_os_family == 'Debian'
- name: Install virtualenv
yum: name=python-virtualenv state=installed
when: ansible_os_family == 'RedHat'
- name: Install virtualenv
apt: name=python-virtualenv state=installed
when: ansible_os_family == 'Debian'
- name: Install RH epel - name: Install RH epel
yum: name="epel-release" state=installed yum: name="epel-release" state=installed
sudo: true sudo: true
@ -43,6 +35,7 @@
- gcc - gcc
- python-devel - python-devel
- libselinux-python - libselinux-python
- python-virtualenv
when: ansible_os_family == 'RedHat' when: ansible_os_family == 'RedHat'
- name: Install Debian ansible dependencies - name: Install Debian ansible dependencies
@ -57,6 +50,7 @@
- git - git
- unzip - unzip
- python-dev - python-dev
- python-virtualenv
when: ansible_os_family == 'Debian' when: ansible_os_family == 'Debian'
- name: Install ubuntu 12.04 ansible dependencies - name: Install ubuntu 12.04 ansible dependencies