32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
|
From 50b53b8221aa9d5e8fa3269b73d13b8a304728a8 Mon Sep 17 00:00:00 2001
|
||
|
From: Luca Boccassi <bluca@debian.org>
|
||
|
Date: Sun, 16 Jun 2024 13:41:50 +0100
|
||
|
Subject: [PATCH] test: check the skip condition before installing additional
|
||
|
files
|
||
|
|
||
|
(cherry picked from commit e1daedb4be6d8180790e0b303872fb1c87ddc7fc)
|
||
|
---
|
||
|
test/units/TEST-43-PRIVATEUSER-UNPRIV.sh | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/test/units/TEST-43-PRIVATEUSER-UNPRIV.sh b/test/units/TEST-43-PRIVATEUSER-UNPRIV.sh
|
||
|
index 165af47f15..f8a2a62467 100755
|
||
|
--- a/test/units/TEST-43-PRIVATEUSER-UNPRIV.sh
|
||
|
+++ b/test/units/TEST-43-PRIVATEUSER-UNPRIV.sh
|
||
|
@@ -6,13 +6,13 @@ set -o pipefail
|
||
|
# shellcheck source=test/units/util.sh
|
||
|
. "$(dirname "$0")"/util.sh
|
||
|
|
||
|
-install_extension_images
|
||
|
-
|
||
|
if [[ "$(sysctl -ne kernel.apparmor_restrict_unprivileged_userns)" -eq 1 ]]; then
|
||
|
echo "Cannot create unprivileged user namespaces" >/skipped
|
||
|
exit 77
|
||
|
fi
|
||
|
|
||
|
+install_extension_images
|
||
|
+
|
||
|
systemd-analyze log-level debug
|
||
|
|
||
|
runas testuser systemd-run --wait --user --unit=test-private-users \
|