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