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 1
1
---
2
2
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 }} "
4
4
become : true
5
5
ansible.builtin.stat :
6
6
path : " {{ py_data.bin }}"
7
7
register : already_installed
8
8
ignore_errors : true
9
9
10
- - name : " {{ py_data.version }} | Download "
10
+ - name : " Python | Download | {{ py_data.version }}"
11
11
ansible.builtin.get_url :
12
12
url : " {{ py_data.url }}"
13
13
dest : " {{ py_data.tar_file }}"
14
14
checksum : " md5:{{ py_data.md5 }}"
15
15
mode : " 0440"
16
16
when : not already_installed.stat.exists
17
17
18
- - name : " {{ py_data.version }} | Uncompress "
18
+ - name : " Python | Uncompress | {{ py_data.version }}"
19
19
ansible.builtin.unarchive :
20
20
src : " {{ py_data.tar_file }}"
21
21
dest : /tmp
22
22
copy : false
23
23
creates : " {{ py_data.sources }}"
24
24
when : not already_installed.stat.exists
25
25
26
- - name : " {{ py_data.version }} | Compile and install "
26
+ - name : " Python | Compile and install | {{ py_data.version }}"
27
27
become : true
28
28
ansible.builtin.command : " {{ item }}"
29
29
args :
36
36
register : output
37
37
changed_when : output.rc != 0
38
38
39
- - name : " {{ py_data.version }} | Create python_major_version symlink "
39
+ - name : " Python | Create symlink | {{ py_data.version }}"
40
40
become : true
41
41
ansible.builtin.file :
42
42
src : " {{ py_data.install }}"
Original file line number Diff line number Diff line change 1
1
---
2
2
3
- - name : " Virtualenv {{ py_data.version }} | Check if it is already installed"
3
+ - name : " Virtualenv | Check if it is already installed | {{ py_data.version }} "
4
4
become : true
5
5
ansible.builtin.stat :
6
6
path : " {{ py_data.install }}/bin/virtualenv"
7
7
register : already_installed
8
8
ignore_errors : true
9
9
when : should_install
10
10
11
- - name : " Virtualenv for {{ py_data.version }} | Download "
11
+ - name : " Virtualenv | Download | {{ py_data.version }}"
12
12
ansible.builtin.get_url :
13
13
url : " {{ venv_data.url }}"
14
14
dest : " {{ venv_data.tar_file }}"
15
15
checksum : " md5:{{ venv_data.md5 }}"
16
16
mode : " 0440"
17
17
when : should_install and not already_installed.stat.exists
18
18
19
- - name : " Virtualenv for {{ py_data.version }} | Uncompress "
19
+ - name : " Virtualenv | Uncompress | {{ py_data.version }}"
20
20
ansible.builtin.unarchive :
21
21
src : " {{ venv_data.tar_file }}"
22
22
dest : /tmp
23
23
copy : false
24
24
when : should_install and not already_installed.stat.exists
25
25
26
- - name : " {{ py_data.version }} | Install virtualenv "
26
+ - name : " Virtualenv | Install | {{ py_data.version }}"
27
27
become : true
28
28
ansible.builtin.command : " {{ item }}"
29
29
args :
You can’t perform that action at this time.
0 commit comments