Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Alma 9 #1675

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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