Commit 7af2afb 1 parent 4eafdac commit 7af2afb Copy full SHA for 7af2afb
File tree 4 files changed +32
-0
lines changed
ansible/playbooks/AdoptOpenJDK_Unix_Playbook/roles/Common
4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 273
273
- ansible_architecture == "x86_64"
274
274
tags : expat
275
275
276
+ # ####################
277
+ # Configure Weston #
278
+ # ####################
279
+ - name : Install weston related packages(CentOS 10)
280
+ package :
281
+ name : " {{ item }}"
282
+ state : latest
283
+ with_items : " {{ Additional_Test_Tool_Packages_CentOS10 }}"
284
+ when : ansible_distribution_major_version > "9"
285
+ tags : test_tools
286
+
276
287
# ###################
277
288
# Set Default Java #
278
289
# ###################
Original file line number Diff line number Diff line change 128
128
when : (ansible_architecture == "s390x")
129
129
tags : test_tools
130
130
131
+ # ####################
132
+ # Configure Weston #
133
+ # ####################
134
+ - name : Install weston related packages(RedHat 10)
135
+ package :
136
+ name : " {{ item }}"
137
+ state : latest
138
+ with_items : " {{ Additional_Test_Tool_Packages_RHEL10 }}"
139
+ when : ansible_distribution_major_version > "9"
140
+ tags : test_tools
141
+
131
142
# ###############
132
143
# Install Java #
133
144
# ###############
Original file line number Diff line number Diff line change @@ -119,3 +119,8 @@ Test_Tool_Packages:
119
119
- shared-mime-info
120
120
- nss-devel
121
121
- nss-tools
122
+
123
+ Additional_Test_Tool_Packages_CentOS10 :
124
+ - weston
125
+ - wayland-utils
126
+ - xorg-x11-server-Xwayland
Original file line number Diff line number Diff line change @@ -121,3 +121,8 @@ Test_Tool_Packages:
121
121
- shared-mime-info
122
122
- nss-devel
123
123
- nss-tools
124
+
125
+ Additional_Test_Tool_Packages_RHEL10 :
126
+ - weston
127
+ - wayland-utils
128
+ - xorg-x11-server-Xwayland
You can’t perform that action at this time.
0 commit comments