When rpm_kernel adds a check_ident to the reboot steps, it shouldn't
pass in its own subdir since the reboot won't be running as part of
the rpm_kernel install (and thus won't share its subdir).
Risk: Low
Visibility: reboot.verify logs from rpm kernel installs won't show
up with an erroneous subdir in the status logs.
Signed-off-by: John Admanski <jadmanski@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@1834 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/kernel.py b/client/bin/kernel.py
index 1979d7f..e8dfbb9 100755
--- a/client/bin/kernel.py
+++ b/client/bin/kernel.py
@@ -701,7 +701,7 @@
args += " IDENT=%d" % (when)
self.job.next_step_prepend(["job.kernel_check_ident",
- when, ident, self.subdir, 'rpm'])
+ when, ident, None, 'rpm'])
# Boot the selected tag.
self.add_to_bootloader(args=args, tag=self.installed_as)