File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 746
746
# Runs emulation feature functionality test less frequently due
747
747
# to being the initial release and experimental in nature.
748
748
- nova-emulation
749
- - tempest-integrated-compute-centos-9-stream :
750
- irrelevant-files : *nova-base-irrelevant-files
749
+ - tempest-centos9-stream-fips
751
750
experimental :
752
751
jobs :
753
752
- ironic-tempest-bfv :
777
776
irrelevant-files : *nova-base-irrelevant-files
778
777
- devstack-tobiko-nova :
779
778
irrelevant-files : *nova-base-irrelevant-files
780
- - tempest-centos8 -stream-fips :
779
+ - tempest-centos9 -stream-fips :
781
780
irrelevant-files : *nova-base-irrelevant-files
782
781
- nova-emulation
783
782
- tempest-integrated-compute-centos-9-stream :
Original file line number Diff line number Diff line change @@ -27,13 +27,19 @@ function is_rhel8 {
27
27
cat /etc/* release | grep -q ' release 8'
28
28
}
29
29
30
+ function is_rhel9 {
31
+ [ -f /usr/bin/dnf ] && \
32
+ cat /etc/* release | grep -q -e " Red Hat" -e " CentOS" -e " CloudLinux" && \
33
+ cat /etc/* release | grep -q ' release 9'
34
+ }
35
+
30
36
function set_conf_line { # file regex value
31
37
sudo sh -c " grep -q -e '$2 ' $1 && \
32
38
sed -i 's|$2 |$3 |g' $1 || \
33
39
echo '$3 ' >> $1 "
34
40
}
35
41
36
- if is_rhel7 || is_rhel8; then
42
+ if is_rhel7 || is_rhel8 || is_rhel9 ; then
37
43
# mysql needs to be started on centos/rhel
38
44
sudo systemctl restart mariadb.service
39
45
You can’t perform that action at this time.
0 commit comments