Skip to content

Commit f9cf70a

Browse files
committed
Fix: Oracle linux 9
1 parent 313b6da commit f9cf70a

File tree

1 file changed

+19
-2
lines changed
  • data/core-configuration/packs/core-installation/compliance

1 file changed

+19
-2
lines changed

data/core-configuration/packs/core-installation/compliance/install.yml

+19-2
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ compliance:
200200

201201

202202

203-
- name : oracle_linux_8_and_9
204-
if : "{{variables.is_oracle_linux}} and {{collector.system.os.linux.major_version}} >= 8"
203+
- name : oracle_linux_8
204+
if : "{{variables.is_oracle_linux}} and {{collector.system.os.linux.major_version}} == 8"
205205
parameters :
206206
packages:
207207
- oracle-epel-release-el8 # for yaml
@@ -220,6 +220,23 @@ compliance:
220220
post_commands:
221221
- pip3 install pycrypto
222222

223+
224+
- name : oracle_linux__9
225+
if : "{{variables.is_oracle_linux}} and {{collector.system.os.linux.major_version}} == 9"
226+
parameters :
227+
packages:
228+
- oracle-epel-release-el9 # for yaml
229+
- python3-rpm
230+
- python3-jinja2
231+
- python3-setuptools
232+
- python3-pyyaml # in epel
233+
- leveldb # in epel
234+
- python3-simplejson # in epel
235+
- python3-setproctitle # in epel
236+
- python3-psutil # in epel
237+
- python3-pycryptodomex
238+
- bash-completion # Bash completion to enable the CLI completion
239+
223240

224241
### DEBIAN
225242
# ____ __ _

0 commit comments

Comments
 (0)