1
0
Fork 0

ktest: For grub reboot, use run_ssh instead of run_command

The run_ssh handles the ssh variable $SSH_COMMAND, which was not
being used by the run_command in reboot_to function.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
hifive-unleashed-5.1
Steven Rostedt 2010-11-10 09:08:20 -05:00 committed by Steven Rostedt
parent 1c8a617a27
commit eec5646031
1 changed files with 1 additions and 1 deletions

View File

@ -561,7 +561,7 @@ sub wait_for_input
sub reboot_to {
if ($reboot_type eq "grub") {
run_command "$ssh_exec '(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'";
run_ssh "'(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'";
return;
}