Merge pull request #31317 from fbuihuu/update-tests-for-suse

Update tests for SUSE
This commit is contained in:
Luca Boccassi
2024-02-14 17:31:40 +00:00
committed by GitHub
2 changed files with 9 additions and 0 deletions

View File

@@ -1378,10 +1378,14 @@ install_rpm() {
install_suse_systemd() {
local pkgs
dinfo "Install basic filesystem structure"
install_rpm filesystem
dinfo "Install SUSE systemd"
pkgs=(
systemd
systemd-boot
systemd-container
systemd-coredump
systemd-experimental

View File

@@ -13,6 +13,11 @@ if ! command -v bootctl >/dev/null; then
exit 0
fi
if [[ ! -d /usr/lib/systemd/boot/efi ]]; then
echo "sd-boot is not installed, skipping."
exit 0
fi
# shellcheck source=test/units/util.sh
. "$(dirname "$0")"/util.sh