blob: c0ba5e84c6478223442c9811eaa92855a198e26d [file] [log] [blame]
J. Richard Barnetted42a0912014-11-18 17:03:53 -08001#!/usr/bin/python
2# Simple utility to trigger a Verify job on a bunch of hosts.
3#
4# CAVEAT: no error checking; if any argument isn't a valid
5# host, it will be silently ignored. If there are no command
6# line arguments, silently succeed.
7
8import sys
9
10import common
11
12from autotest_lib.server import frontend
13
14# I _think_ (but I don't know) that the AFE calls operate on all the
15# hosts if there are no arguments given. I do know for certain that
16# with hostnames=[], the call takes longer than I was willing to
17# wait.
18#
19# To protect against pointless exercises in futility, do nothing
20# if there are no arguments.
21
22if len(sys.argv) >= 2:
23 frontend.AFE().reverify_hosts(hostnames=sys.argv[1:])