
Depends-On: Ifa876b3e5f89258f40055fa7ce03f5e9c601771c Change-Id: I806c76bff85210f74cd23c29835f41c174b8c960
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
YAML
---
|
|
|
|
- name: "enable yum repos"
|
|
become: yes
|
|
shell:
|
|
yum-config-manager --enable '{{ item }}' | grep baseurl
|
|
loop: '{{ enable_yum_repos }}'
|
|
|
|
|
|
- name: "install '{{ python_command }}' packages"
|
|
become: '{{ test_become | bool }}'
|
|
package:
|
|
name: "{{ python_packages[python_command] | flatten }}"
|
|
when: 'python_command in python_packages'
|
|
register: install_python_packages
|
|
|
|
|
|
- name: "compile python 3 from sources"
|
|
include_role: name=tobiko-compile-python
|
|
when:
|
|
- compile_python3 | bool
|
|
|
|
|
|
- name: "get '{{ python_command }}' full path"
|
|
shell: |
|
|
export PATH={{ python_exe_path }}
|
|
which "{{ python_command }}"
|
|
register: get_python_exe
|
|
changed_when: no
|
|
|
|
|
|
- name: "get '{{ get_python_exe.stdout_lines | first }}' info"
|
|
script:
|
|
cmd: get_python_info.py --base --quiet
|
|
executable: '{{ get_python_exe.stdout_lines | first }}'
|
|
register: get_python_info
|
|
changed_when: no
|
|
|
|
|
|
- name: "set python_info['{{ python_command }}'] fact"
|
|
set_fact:
|
|
python_info: >
|
|
{{ python_info | combine({python_command:
|
|
(get_python_info.stdout | from_json)}) }}
|
|
|
|
|
|
- name: "upgrade '{{ python_command }}' packages to the latest versions"
|
|
command: >
|
|
'{{ python_info[python_command].executable }}' -m pip install '{{ item }}' \
|
|
--upgrade --user -c '{{ remote_constraints_file }}'
|
|
register: upgrade_python_packages
|
|
changed_when:
|
|
"'Successfully installed' in upgrade_python_packages.stdout"
|
|
loop:
|
|
- pip
|
|
- setuptools
|
|
- wheel
|
|
- virtualenv
|
|
|
|
|
|
- name: "show python_info facts"
|
|
debug:
|
|
msg:
|
|
python_info: '{{ python_info }}'
|