Skip to content

Commit

Permalink
Add support for Alma 9
Browse files Browse the repository at this point in the history
  • Loading branch information
cybertron committed Aug 29, 2024
1 parent 24aed67 commit 080bf8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 01_install_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ case $DISTRO in
sudo update-alternatives --install /usr/bin/pip3 pip3 /usr/bin/pip3.9 1
PYTHON_DEVEL="python39-devel"
;;
"centos9"|"rhel9"|"rocky9")
"centos9"|"rhel9"|"almalinux9"|"rocky9")
sudo dnf -y install python3-pip
if [[ $DISTRO == "centos9" ]] ||[[ $DISTRO == "rocky9" ]] ; then
if [[ $DISTRO == "centos9" || $DISTRO=="almalinux9" || $DISTRO == "rocky9" ]] ; then
sudo dnf config-manager --set-enabled crb
sudo dnf -y install epel-release
elif [[ $DISTRO == "rhel9" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion 02_configure_host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ early_deploy_validation
#
manage_libvirtd() {
case ${DISTRO} in
centos9|rhel9|rocky9)
centos9|rhel9|almalinux9|rocky9)
for i in qemu interface network nodedev nwfilter secret storage proxy; do
sudo systemctl enable --now virt${i}d.socket
sudo systemctl enable --now virt${i}d-ro.socket
Expand Down

0 comments on commit 080bf8f

Please sign in to comment.