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 1010 - libssl1.1
1111 - libicu57
1212 state : present
13- update_cache : yes
13+ update_cache : true
1414 when : (ansible_distribution == "Debian" and ansible_distribution_major_version == "9")
1515
1616- name : Install dependencies on Debian Buster
2323 - libssl1.1
2424 - libicu63
2525 state : present
26- update_cache : yes
26+ update_cache : true
2727 when : (ansible_distribution == "Debian" and ansible_distribution_major_version == "10")
2828
2929- name : Install dependencies on Debian Bullseye
3636 - libssl1.1
3737 - libicu67
3838 state : present
39- update_cache : yes
39+ update_cache : true
4040 when : (ansible_distribution == "Debian" and ansible_distribution_major_version == "11")
4141
4242- name : Install dependencies on Debian Bookworm
4949 - libssl3
5050 - libicu72
5151 state : present
52- update_cache : yes
52+ update_cache : true
5353 when : (ansible_distribution == "Debian" and ansible_distribution_major_version == "12")
5454
5555- name : Install dependencies on Ubuntu Xenial systems
6262 - libssl1.0.0
6363 - libicu55
6464 state : present
65- update_cache : yes
65+ update_cache : true
6666 when : (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "16")
6767
6868- name : Install dependencies on Ubuntu Bionic systems
7575 - libssl1.1
7676 - libicu60
7777 state : present
78- update_cache : yes
78+ update_cache : true
7979 when : (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "18")
8080
8181- name : Install dependencies on Ubuntu Focal systems
8888 - libssl1.1
8989 - libicu66
9090 state : present
91- update_cache : yes
91+ update_cache : true
9292 when : (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "20")
9393
9494- name : Install dependencies on Ubuntu Jammy systems
100100 - zlib1g
101101 - libicu70
102102 state : present
103- update_cache : yes
103+ update_cache : true
104104 when : (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "22")
105105
106106- name : Install dependencies on RHEL/CentOS/Fedora systems
112112 - zlib
113113 - libicu
114114 state : present
115- update_cache : yes
115+ update_cache : true
116116 when : (ansible_distribution == "RedHat") or
117117 (ansible_distribution == "CentOS") or
118118 (ansible_distribution == "Fedora") or
Original file line number Diff line number Diff line change 33 ansible.builtin.file :
44 path : " {{ runner_dir }}"
55 state : directory
6- mode : 0755
6+ mode : " 0755"
77 owner : " {{ runner_user_id.stdout }}"
88 group : " {{ runner_user_group_id.stdout }}"
99
2727 owner : " {{ runner_user_id.stdout }}"
2828 group : " {{ runner_user_group_id.stdout }}"
2929 remote_src : yes
30- mode : 0755
30+ mode : " 0755"
3131 environment :
3232 PATH : /usr/local/bin:/opt/homebrew/bin/:{{ ansible_env.HOME }}/bin:{{ ansible_env.PATH }}
3333 when : runner_version not in runner_installed.stdout or reinstall_runner
3838 block : " {{ custom_env }}"
3939 owner : " {{ runner_user }}"
4040 create : yes
41- mode : 0755
41+ mode : " 0755"
4242 marker_begin : " # BEGIN ANSIBLE MANAGED BLOCK"
4343 marker_end : " # END ANSIBLE MANAGED BLOCK"
4444 when : custom_env is defined
You can’t perform that action at this time.
0 commit comments