mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 1 | def 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, | ||||
jadmanski | 5161900 | 2008-11-06 23:57:59 +0000 | [diff] [blame] | 6 | initialize=False, password=passwd, |
7 | auto_monitor=False) | ||||
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 8 | host.machine_install() |
9 | |||||
10 | job.parallel_simple(install, machines, log=False) |