RPM kernels can now be installed. The support is very much like
DEB kernel package support. The fix to ssh_host allows machines
with _very_ old mktemp executables to create temp dirs.
Signed-off-by: Ryan Stutsman <stutsman@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@627 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/hosts/ssh_host.py b/server/hosts/ssh_host.py
index 5b3e008..7f825d9 100644
--- a/server/hosts/ssh_host.py
+++ b/server/hosts/ssh_host.py
@@ -217,7 +217,7 @@
on the destruction of the Host object that was used to obtain
it.
"""
- dir_name= self.run("mktemp -dt autoserv-XXXXXX").stdout.rstrip(" \n")
+ dir_name= self.run("mktemp -d /tmp/autoserv-XXXXXX").stdout.rstrip(" \n")
self.tmp_dirs.append(dir_name)
return dir_name