Merge "Switch virtualenv_install_method to package"

This commit is contained in:
Zuul 2018-12-22 16:53:32 +00:00 committed by Gerrit Code Review
commit c8fa5ce581
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

@ -14,6 +14,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 }}"