• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1from autotest_lib.server import utils
2
3
4def 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)
11    host.verify_job_repo_url(job.tag)
12
13
14job.parallel_simple(install, machines, log=False)
15