blob: 509f462849bbed8de34f0a79561ccb84e4182fa8 [file] [log] [blame]
mbligh084bc172008-10-18 14:02:45 +00001def install(machine):
2 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)
7 host.machine_install()
8
9job.parallel_simple(install, machines, log=False)