From d1d6b0340a42143c205f66634744deb9c07d224d Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 28 Aug 2025 08:50:17 -0700 Subject: [PATCH] Revert #2334165 workaround The security fix has been removed for now; we're removing this workaround so we'll notice if it gets broken again. Signed-off-by: Adam Williamson --- tests/podman.pm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/podman.pm b/tests/podman.pm index a653cdcc..796645f5 100644 --- a/tests/podman.pm +++ b/tests/podman.pm @@ -55,11 +55,6 @@ sub run { assert_script_run("echo 'testman:weakpassword' | chpasswd"); # let it write to the serial port assert_script_run "chmod 666 /dev/${serialdev}"; - if (script_run "grep testman /etc/subuid") { - # workaround https://bugzilla.redhat.com/show_bug.cgi?id=2334165#c2 - assert_script_run("usermod --add-subuids 100000-165535 testman"); - assert_script_run("usermod --add-subgids 100000-165535 testman"); - } # login as the non-root user select_console "tty4-console"; console_login(user => "testman", password => "weakpassword");