From b504146a2f799bce80ec20aa57661298091cea3f Mon Sep 17 00:00:00 2001 From: Nuutti Hakala Date: Fri, 15 May 2026 09:26:25 +0300 Subject: [PATCH] Upgrade to SP7 Signed-off-by: Nuutti Hakala --- README.md | 8 ++++---- .../sles/environment.d/10-sles-distro-name.bash | 4 ++-- testenv.sh | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7772a46..a9d613e 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,10 @@ decided to use DIB with some custom elements to remove dependency on `IPA builder` as it doesn't support SLES based images anyways. **NOTE:** The workflow expects SLES evaluation images by default for example - `SLES15-SP6-Minimal-VM.x86_64-OpenStack-Cloud-GM.qcow2` as a base image for + `SLES15-SP7-Minimal-VM.x86_64-OpenStack-Cloud-GM.qcow2` as a base image for IPA and installs additional distribution packages from -`SLE-15-SP6-Full-x86_64-GM-Media1.iso`. During the build process the custom -elements use the repositories from `SLE-15-SP6-Full-x86_64-GM-Media1.iso` +`SLE-15-SP7-Full-x86_64-GM-Media1.iso`. During the build process the custom +elements use the repositories from `SLE-15-SP7-Full-x86_64-GM-Media1.iso` in order to avoid any potential issue that might arise from the fact that using remote repositories would require registration but there was no available documentation about the effect of continuously re-registration of a SLES image @@ -213,7 +213,7 @@ the upstream elements match the `SLES`. The `sles` element is responsible for preparing the root file system of the IPA image. The element extracts a root file system from the SLES base image, sets the legacy and EFI boot configuration and mounts the -`SLE-15-SP6-Full-x86_64-GM-Media1.iso` into the `$TARGET_ROOT/mnt/repos` +`SLE-15-SP7-Full-x86_64-GM-Media1.iso` into the `$TARGET_ROOT/mnt/repos` location to enable package installation via zypper during the build process. The directory path on the host system that contains SLES images used by this diff --git a/ipa_builder_elements/sles/environment.d/10-sles-distro-name.bash b/ipa_builder_elements/sles/environment.d/10-sles-distro-name.bash index 86c8825..72e66b1 100644 --- a/ipa_builder_elements/sles/environment.d/10-sles-distro-name.bash +++ b/ipa_builder_elements/sles/environment.d/10-sles-distro-name.bash @@ -3,9 +3,9 @@ export DISTRO_NAME="opensuse" export DIB_INIT_SYSTEM="systemd" export DIB_OFFLINE="true" export DIB_SLES_OFFLINE_TARGET_DIR="/$HOME/sles_images" -export DIB_SLES_ISO_REPO_FILE="${DIB_SLES_ISO_REPO_FILE:-SLE-15-SP6-Full-x86_64-GM-Media1.iso}" +export DIB_SLES_ISO_REPO_FILE="${DIB_SLES_ISO_REPO_FILE:-SLE-15-SP7-Full-x86_64-GM-Media1.iso}" export DIB_SLES_RELEASE="${DIB_SLES_RELEASE:-SLE-15}" -export DIB_SLES_SERVICE_PACK="${DIB_SLES_SERVICE_PACK:-SP6}" +export DIB_SLES_SERVICE_PACK="${DIB_SLES_SERVICE_PACK:-SP7}" export DIB_SLES_INSTALL_TYPE="${DIB_SLES_INSTALL_TYPE:-Minimal-VM}" export DIB_SLES_IMAGE_TARGET_PLATFORM="${DIB_SLES_IMAGE_TARGET_PLATFORM:-OpenStack-Cloud-GM}" export DIB_SLES_BUILD_NUM="${DIB_SLES_BUILD_NUM:-202204}" diff --git a/testenv.sh b/testenv.sh index 2977846..6cec92c 100755 --- a/testenv.sh +++ b/testenv.sh @@ -7,7 +7,7 @@ export ENABLE_DEV_USER_PASS="true" export ENABLE_DEV_USER_SSH="true" export DISABLE_UPLOAD="true" export TEST_IN_CI="false" -export DIB_SLES_SERVICE_PACK="SP6" +export DIB_SLES_SERVICE_PACK="SP7" export DIB_SLES_IMAGE_TARGET_PLATFORM="Cloud-GM" -export DIB_SLES_ISO_REPO_FILE="SLE-15-SP6-Full-x86_64-GM-Media1.iso" +export DIB_SLES_ISO_REPO_FILE="SLE-15-SP7-Full-x86_64-GM-Media1.iso" export INCLUDE_SIMPLE_INIT="false"