blob: 0dd7f88b3ab3d09a949aa2cb792639c04b06cf5e [file] [log] [blame]
mbligh5c5e4082007-10-24 21:24:32 +00001def run(machine):
2 host = hosts.SSHHost(machine, initialize = False)
3 print 'Uptime: ' + host.check_uptime()
4 print 'Arch: ' + host.get_arch()
5 print 'Kernel ver: ' + host.get_kernel_ver()
6 print 'Kernel cmdline: ' + host.get_cmdline()
mbligh5f876ad2007-10-12 23:59:53 +00007
mblighd74208c2008-04-17 15:27:03 +00008job.parallel_simple(run, machines)