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) |
mbligh | 5493129 | 2008-11-23 14:35:51 +0000 | [diff] [blame] | 4 | host = hosts.create_host(hostname, user=user, port=port, initialize=False, |
| 5 | password=passwd, auto_monitor=False) |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 6 | host.machine_install() |
| 7 | |
mbligh | 5493129 | 2008-11-23 14:35:51 +0000 | [diff] [blame] | 8 | |
mbligh | 084bc17 | 2008-10-18 14:02:45 +0000 | [diff] [blame] | 9 | job.parallel_simple(install, machines, log=False) |