blob: 1a201bde62842b7caf82ff2ca7f4c673e702a97a [file] [log] [blame]
showard45ae8192008-11-05 19:32:53 +00001def cleanup(machine):
mbligh084bc172008-10-18 14:02:45 +00002 hostname, user, passwd, port = parse_machine(machine, ssh_user,
3 ssh_port, ssh_pass)
mbligh54931292008-11-23 14:35:51 +00004 host = hosts.create_host(hostname, user=user, port=port, initialize=False,
5 password=passwd, auto_monitor=False)
showard45ae8192008-11-05 19:32:53 +00006 host.cleanup()
mbligh084bc172008-10-18 14:02:45 +00007
mbligh54931292008-11-23 14:35:51 +00008
showard45ae8192008-11-05 19:32:53 +00009job.parallel_simple(cleanup, machines, log=False)