File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 10
10
- libssl1.1
11
11
- libicu57
12
12
state : present
13
- update_cache : yes
13
+ update_cache : true
14
14
when : (ansible_distribution == "Debian" and ansible_distribution_major_version == "9")
15
15
16
16
- name : Install dependencies on Debian Buster
23
23
- libssl1.1
24
24
- libicu63
25
25
state : present
26
- update_cache : yes
26
+ update_cache : true
27
27
when : (ansible_distribution == "Debian" and ansible_distribution_major_version == "10")
28
28
29
29
- name : Install dependencies on Debian Bullseye
36
36
- libssl1.1
37
37
- libicu67
38
38
state : present
39
- update_cache : yes
39
+ update_cache : true
40
40
when : (ansible_distribution == "Debian" and ansible_distribution_major_version == "11")
41
41
42
42
- name : Install dependencies on Debian Bookworm
49
49
- libssl3
50
50
- libicu72
51
51
state : present
52
- update_cache : yes
52
+ update_cache : true
53
53
when : (ansible_distribution == "Debian" and ansible_distribution_major_version == "12")
54
54
55
55
- name : Install dependencies on Ubuntu Xenial systems
62
62
- libssl1.0.0
63
63
- libicu55
64
64
state : present
65
- update_cache : yes
65
+ update_cache : true
66
66
when : (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "16")
67
67
68
68
- name : Install dependencies on Ubuntu Bionic systems
75
75
- libssl1.1
76
76
- libicu60
77
77
state : present
78
- update_cache : yes
78
+ update_cache : true
79
79
when : (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "18")
80
80
81
81
- name : Install dependencies on Ubuntu Focal systems
88
88
- libssl1.1
89
89
- libicu66
90
90
state : present
91
- update_cache : yes
91
+ update_cache : true
92
92
when : (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "20")
93
93
94
94
- name : Install dependencies on Ubuntu Jammy systems
100
100
- zlib1g
101
101
- libicu70
102
102
state : present
103
- update_cache : yes
103
+ update_cache : true
104
104
when : (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "22")
105
105
106
106
- name : Install dependencies on RHEL/CentOS/Fedora systems
112
112
- zlib
113
113
- libicu
114
114
state : present
115
- update_cache : yes
115
+ update_cache : true
116
116
when : (ansible_distribution == "RedHat") or
117
117
(ansible_distribution == "CentOS") or
118
118
(ansible_distribution == "Fedora") or
Original file line number Diff line number Diff line change 3
3
ansible.builtin.file :
4
4
path : " {{ runner_dir }}"
5
5
state : directory
6
- mode : 0755
6
+ mode : " 0755"
7
7
owner : " {{ runner_user_id.stdout }}"
8
8
group : " {{ runner_user_group_id.stdout }}"
9
9
27
27
owner : " {{ runner_user_id.stdout }}"
28
28
group : " {{ runner_user_group_id.stdout }}"
29
29
remote_src : yes
30
- mode : 0755
30
+ mode : " 0755"
31
31
environment :
32
32
PATH : /usr/local/bin:/opt/homebrew/bin/:{{ ansible_env.HOME }}/bin:{{ ansible_env.PATH }}
33
33
when : runner_version not in runner_installed.stdout or reinstall_runner
38
38
block : " {{ custom_env }}"
39
39
owner : " {{ runner_user }}"
40
40
create : yes
41
- mode : 0755
41
+ mode : " 0755"
42
42
marker_begin : " # BEGIN ANSIBLE MANAGED BLOCK"
43
43
marker_end : " # END ANSIBLE MANAGED BLOCK"
44
44
when : custom_env is defined
You can’t perform that action at this time.
0 commit comments