blob: 1d24f6ad876f6d664e13f591abf0a43bba4f25a0 [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)
4
5 host = hosts.create_host(hostname, user=user, port=port,
6 initialize=False, password=passwd)
showard45ae8192008-11-05 19:32:53 +00007 host.cleanup()
mbligh084bc172008-10-18 14:02:45 +00008
showard45ae8192008-11-05 19:32:53 +00009job.parallel_simple(cleanup, machines, log=False)