• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1AUTHOR = "Jeremy Orlow <jorlow@google.com>"
2NAME = "ReInstallMachine"
3TIME = "MEDIUM"
4TEST_CLASS = "Kernel"
5TEST_CATEGORY = "Utility"
6TEST_TYPE = "server"
7RUN_VERIFY = False
8DOC = """\
9This will re-install a machine, using the code in
10afe_utils.machine_install_and_update_labels()."""
11
12def run(machine):
13    host = hosts.create_host(machine)
14    job.run_test('reinstall', host=host, disable_sysinfo=True)
15
16job.parallel_simple(run, machines)
17