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

Introducing AlmaLinux 9 images #71

Open
wants to merge 2 commits 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
1 change: 1 addition & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ echo "with node image url: ${NODE_URL_BASE:=https://resources.ovirt.org/repos/ov

# cache CentOS images
declare -A ISO_URL
ISO_URL[alma9]="Alma.iso"
ISO_URL[el8]="CentOS.iso"
ISO_URL[el8stream]="CentOS-Stream.iso"
ISO_URL[el9stream]="CentOS-Stream-9.iso"
Expand Down
1 change: 1 addition & 0 deletions configs/alma9/alma9-provision-he.sh.in
1 change: 1 addition & 0 deletions configs/alma9/alma9-provision-host.sh.in
1 change: 1 addition & 0 deletions configs/alma9/alma9.ks.in
7 changes: 7 additions & 0 deletions configs/alma9/build.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# See 'makefiles/vars.mk' for a list of variables that can be overriden
export REPO_ROOT=https://repo.almalinux.org/almalinux/9/
export INSTALL_URL=../$IMAGE
export BUILD_HOST_INSTALLED=1
export BUILD_ENGINE_INSTALLED=
export BUILD_HE_INSTALLED=${BUILD_HE_INSTALLED}
export OPENSCAP_PROFILE="${OPENSCAP_PROFILE}"
6 changes: 1 addition & 5 deletions configs/el8stream/el8stream-provision-engine.sh.in
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
#!/bin/bash -xe

# Workaround for https://bugzilla.redhat.com/2024629
# dnf copr enable -y ovirt/ovirt-master-snapshot
rpm --import https://download.copr.fedorainfracloud.org/results/ovirt/ovirt-master-snapshot/pubkey.gpg
dnf --repofrompath=ovirt-master-snapshot,https://download.copr.fedorainfracloud.org/results/ovirt/ovirt-master-snapshot/centos-stream-8-x86_64/ \
install -y dnf-utils ovirt-release-master
dnf copr enable -y ovirt/ovirt-master-snapshot centos-stream-$(. /etc/os-release; echo ${VERSION_ID} | grep -o '^[0-9]')

dnf module enable -y javapackages-tools pki-deps postgresql:12 mod_auth_openidc:2.3
dnf -y install \
Expand Down
2 changes: 1 addition & 1 deletion configs/el8stream/el8stream-provision-host.sh.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -xe

dnf copr enable -y ovirt/ovirt-master-snapshot centos-stream-$(. /etc/os-release; echo ${VERSION_ID})
dnf copr enable -y ovirt/ovirt-master-snapshot centos-stream-$(. /etc/os-release; echo ${VERSION_ID} | grep -o '^[0-9]')
dnf install -y \
dnf-utils \
ovirt-release-master
Expand Down