1 from autotest_lib.server import utils 2 3 4 def install(machine): 5 if utils.machine_is_testbed(machine): 6 logging.info('testbed does not need to verify job repo url.') 7 return 8 9 logging.info('Verifying job repo url for machine %s', machine) 10 host = hosts.create_host(machine, initialize=False, auto_monitor=False) 11 host.verify_job_repo_url(job.tag) 12 13 14 job.parallel_simple(install, machines, log=False) 15