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 /tools/testing | |
parent | 1c8a617a274c4065681d964cd5a5afb921de4a87 (diff) |
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>
Diffstat (limited to 'tools/testing')
-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 6e8597398468..08a875fa4251 100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl | |||
@@ -561,7 +561,7 @@ sub wait_for_input | |||
561 | 561 | ||
562 | sub reboot_to { | 562 | sub reboot_to { |
563 | if ($reboot_type eq "grub") { | 563 | if ($reboot_type eq "grub") { |
564 | run_command "$ssh_exec '(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'"; | 564 | run_ssh "'(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'"; |
565 | return; | 565 | return; |
566 | } | 566 | } |
567 | 567 | ||