From 3a31f9639d4441b0a1669f03dbbcd3f74475c3b7 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 8 Jun 2016 12:20:43 -0700 Subject: [PATCH] use sudo when rebooting after live install on Rawhide it seems user cannot run 'reboot' any more. 'sudo reboot' seems to do the trick (tested KDE and GNOME). --- tests/_do_install_and_reboot.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_do_install_and_reboot.pm b/tests/_do_install_and_reboot.pm index a328c8d4..c9e7635c 100644 --- a/tests/_do_install_and_reboot.pm +++ b/tests/_do_install_and_reboot.pm @@ -79,7 +79,7 @@ sub run { wait_still_screen 3; assert_and_click "anaconda_install_done"; if (get_var('LIVE')) { - x11_start_program("reboot"); + x11_start_program("sudo reboot"); } }