From 0646dc64ad5bf930c061946e03c3e1ea943255b3 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 18 Nov 2022 16:34:55 -0800 Subject: [PATCH] cockpit: log in as user 'test', not root From 280, the cockpit package disabled logging in as root by default. We could wipe that config file, but it seems better to respect the default config and log in as the admin user 'test' instead of as root. Signed-off-by: Adam Williamson --- lib/cockpit.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cockpit.pm b/lib/cockpit.pm index 227811b6..f857979e 100644 --- a/lib/cockpit.pm +++ b/lib/cockpit.pm @@ -25,9 +25,9 @@ sub start_cockpit { assert_screen "cockpit_login", 60; wait_still_screen(stilltime => 5, similarity_level => 45); if ($login) { - type_safely "root"; + type_safely "test"; wait_screen_change { send_key "tab"; }; - type_safely get_var("ROOT_PASSWORD", "weakpassword"); + type_safely get_var("USER_PASSWORD", "weakpassword"); send_key "ret"; assert_screen "cockpit_main"; # wait for any animation or other weirdness