diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-11-10 09:08:20 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-11-18 11:23:13 -0500 |
commit | eec5646031a54858362f7192a928511a23612f6b (patch) | |
tree | 0cc220e9e720f1a18a2696da0f947f4f07c7725c | |
parent | 1c8a617a274c4065681d964cd5a5afb921de4a87 (diff) | |
download | linux-3.10-eec5646031a54858362f7192a928511a23612f6b.tar.gz linux-3.10-eec5646031a54858362f7192a928511a23612f6b.tar.bz2 linux-3.10-eec5646031a54858362f7192a928511a23612f6b.zip |
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>
-rwxr-xr-x | tools/testing/ktest/ktest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 6e859739846..08a875fa425 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl @@ -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; } |