blob: f514a38c644429ed3dfa017bf1c5fd6f369c6c12 [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,
jadmanski51619002008-11-06 23:57:59 +00006 initialize=False, password=passwd,
7 auto_monitor=False)
showard45ae8192008-11-05 19:32:53 +00008 host.cleanup()
mbligh084bc172008-10-18 14:02:45 +00009
showard45ae8192008-11-05 19:32:53 +000010job.parallel_simple(cleanup, machines, log=False)