blob: aba79ae0a236e09e8fba94f7d304a7c5f817926c [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)
mbligh54931292008-11-23 14:35:51 +00004 host = hosts.create_host(hostname, user=user, port=port, initialize=False,
5 password=passwd, auto_monitor=False)
mbligh084bc172008-10-18 14:02:45 +00006 host.machine_install()
7
mbligh54931292008-11-23 14:35:51 +00008
mbligh084bc172008-10-18 14:02:45 +00009job.parallel_simple(install, machines, log=False)