blob: 411d2694df71716989872b472f106ddbe75369c1 [file] [log] [blame]
mbligh920327b2007-10-12 20:42:25 +00001def run(machine):
2 host = hosts.SSHHost(machine)
mbligha8056b12007-12-19 15:51:02 +00003 print host.is_up()
mbligh920327b2007-10-12 20:42:25 +00004 host.reboot()
5
mbligha8056b12007-12-19 15:51:02 +00006if len(machines) > 1:
7 parallel_simple(run, machines)
8else:
9 run(machines[0])