From 18e34f93b0bcd1228363f798abb464bc76e57058 Mon Sep 17 00:00:00 2001 From: Jonathan Wright Date: Wed, 7 Jan 2026 17:15:59 -0600 Subject: [PATCH] Add AlmaLinux 10 to EL-10 based OS list --- test_suites/oslogin/oslogin_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_suites/oslogin/oslogin_test.go b/test_suites/oslogin/oslogin_test.go index a8e5fab..e732a5d 100644 --- a/test_suites/oslogin/oslogin_test.go +++ b/test_suites/oslogin/oslogin_test.go @@ -89,7 +89,7 @@ func rootUserEntry(ctx context.Context, t *testing.T) string { t.Fatalf("failed to get image: %v", err) } // https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/10/html-single/10.0_release_notes/index#:~:text=GECOS%20field%20for%20root%20user%20is%20changed%20to%20Super%20User - el10basedOSs := []string{"rhel-10", "centos-stream-10", "rocky-linux-10", "oracle-linux-10"} + el10basedOSs := []string{"rhel-10", "centos-stream-10", "rocky-linux-10", "oracle-linux-10", "almalinux-10"} for _, os := range el10basedOSs { if strings.Contains(image, os) { t.Logf("EL-10 based image detected %q, using Super User as GECOS for root user", image)