Switch virtualenv dep installation from pip to package manager

pull/13663/head
James Cammarata 10 years ago
parent fdb94b9a7a
commit ce159ce2eb

@ -11,7 +11,12 @@
when: ansible_os_family == 'Debian' when: ansible_os_family == 'Debian'
- name: Install virtualenv - name: Install virtualenv
pip: name=virtualenv state=present 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

Loading…
Cancel
Save