Create zuul_pip_executable

Allow the user to control the path to the pip executable.

Change-Id: I0622a8cf6ceb0b3fc2583dca106cecc759190207
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-05-31 11:58:00 -04:00
parent 872043b873
commit 302faf4574
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
2 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,7 @@ zuul_git_version: feature/zuulv3
zuul_install_method: git
zuul_pip_name: zuul
# zuul_pip_executable:
# zuul_pip_extra_args:
# zuul_pip_version:
# zuul_pip_virtualenv_python

View File

@ -15,6 +15,7 @@
- name: Install zuul using pip.
become: yes
pip:
executable: "{{ zuul_pip_executable|default(omit) }}"
extra_args: "{{ zuul_pip_extra_args|default(omit) }}"
name: "{{ zuul_pip_name }}"
version: "{{ zuul_pip_version|default(omit) }}"