File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11---
22
3- - name : " {{ py_data.version }} | Check that it is still not installed"
3+ - name : " Python | Check that it is still not installed | {{ py_data.version }} "
44 become : true
55 ansible.builtin.stat :
66 path : " {{ py_data.bin }}"
77 register : already_installed
88 ignore_errors : true
99
10- - name : " {{ py_data.version }} | Download "
10+ - name : " Python | Download | {{ py_data.version }}"
1111 ansible.builtin.get_url :
1212 url : " {{ py_data.url }}"
1313 dest : " {{ py_data.tar_file }}"
1414 checksum : " md5:{{ py_data.md5 }}"
1515 mode : " 0440"
1616 when : not already_installed.stat.exists
1717
18- - name : " {{ py_data.version }} | Uncompress "
18+ - name : " Python | Uncompress | {{ py_data.version }}"
1919 ansible.builtin.unarchive :
2020 src : " {{ py_data.tar_file }}"
2121 dest : /tmp
2222 copy : false
2323 creates : " {{ py_data.sources }}"
2424 when : not already_installed.stat.exists
2525
26- - name : " {{ py_data.version }} | Compile and install "
26+ - name : " Python | Compile and install | {{ py_data.version }}"
2727 become : true
2828 ansible.builtin.command : " {{ item }}"
2929 args :
3636 register : output
3737 changed_when : output.rc != 0
3838
39- - name : " {{ py_data.version }} | Create python_major_version symlink "
39+ - name : " Python | Create symlink | {{ py_data.version }}"
4040 become : true
4141 ansible.builtin.file :
4242 src : " {{ py_data.install }}"
Original file line number Diff line number Diff line change 11---
22
3- - name : " Virtualenv {{ py_data.version }} | Check if it is already installed"
3+ - name : " Virtualenv | Check if it is already installed | {{ py_data.version }} "
44 become : true
55 ansible.builtin.stat :
66 path : " {{ py_data.install }}/bin/virtualenv"
77 register : already_installed
88 ignore_errors : true
99 when : should_install
1010
11- - name : " Virtualenv for {{ py_data.version }} | Download "
11+ - name : " Virtualenv | Download | {{ py_data.version }}"
1212 ansible.builtin.get_url :
1313 url : " {{ venv_data.url }}"
1414 dest : " {{ venv_data.tar_file }}"
1515 checksum : " md5:{{ venv_data.md5 }}"
1616 mode : " 0440"
1717 when : should_install and not already_installed.stat.exists
1818
19- - name : " Virtualenv for {{ py_data.version }} | Uncompress "
19+ - name : " Virtualenv | Uncompress | {{ py_data.version }}"
2020 ansible.builtin.unarchive :
2121 src : " {{ venv_data.tar_file }}"
2222 dest : /tmp
2323 copy : false
2424 when : should_install and not already_installed.stat.exists
2525
26- - name : " {{ py_data.version }} | Install virtualenv "
26+ - name : " Virtualenv | Install | {{ py_data.version }}"
2727 become : true
2828 ansible.builtin.command : " {{ item }}"
2929 args :
You can’t perform that action at this time.
0 commit comments