Switch virtualenv_install_method to package

Default to the distro version of virtualenv, we don't want to get into
the process of managing this dependency.

Change-Id: Ic10ff74ff1bdf99a2d37475abe5434eba3214d4b
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-12-06 22:59:51 -05:00
parent 203ef5a03a
commit 5887dc051b
2 changed files with 9 additions and 1 deletions

View File

@ -13,7 +13,7 @@
# under the License.
---
# windmill.virtualenv
virtualenv_install_method: pip
virtualenv_install_method: package
# windmill-config
# TODO(pabelanger): Create windmill-config project on git.o.o.

View File

@ -13,6 +13,14 @@
regexp: ^extra-index-url
state: absent
- name: Remove exclude from dnf.conf
become: true
lineinfile:
dest: /etc/dnf/dnf.conf
regexp: ^exclude
state: absent
when: ansible_os_family == 'RedHat'
- name: Bootstrap bindep environment
args:
chdir: "{{ windmill_src_dir }}"