Home | History | Annotate | Download | only in control_segments
      1 from autotest_lib.server import utils
      2 
      3 
      4 def install(machine):
      5     logging.info('Verifying job repo url for machine %s', machine)
      6     host = hosts.create_host(machine)
      7     host.verify_job_repo_url(job.tag)
      8 
      9 
     10 job.parallel_simple(install, machines, log=False)
     11