Skip to content

Commit 080bf8f

Browse files
committed
Add support for Alma 9
1 parent 24aed67 commit 080bf8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

01_install_requirements.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ case $DISTRO in
8383
sudo update-alternatives --install /usr/bin/pip3 pip3 /usr/bin/pip3.9 1
8484
PYTHON_DEVEL="python39-devel"
8585
;;
86-
"centos9"|"rhel9"|"rocky9")
86+
"centos9"|"rhel9"|"almalinux9"|"rocky9")
8787
sudo dnf -y install python3-pip
88-
if [[ $DISTRO == "centos9" ]] ||[[ $DISTRO == "rocky9" ]] ; then
88+
if [[ $DISTRO == "centos9" || $DISTRO=="almalinux9" || $DISTRO == "rocky9" ]] ; then
8989
sudo dnf config-manager --set-enabled crb
9090
sudo dnf -y install epel-release
9191
elif [[ $DISTRO == "rhel9" ]]; then

02_configure_host.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ early_deploy_validation
2020
#
2121
manage_libvirtd() {
2222
case ${DISTRO} in
23-
centos9|rhel9|rocky9)
23+
centos9|rhel9|almalinux9|rocky9)
2424
for i in qemu interface network nodedev nwfilter secret storage proxy; do
2525
sudo systemctl enable --now virt${i}d.socket
2626
sudo systemctl enable --now virt${i}d-ro.socket

0 commit comments

Comments
 (0)