You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
574 B
24 lines
574 B
"""The standalone harness interface
|
|
|
|
The default interface as required for the standalone reboot helper.
|
|
"""
|
|
|
|
__author__ = """Copyright Andy Whitcroft 2007"""
|
|
|
|
import os, harness
|
|
|
|
class harness_standalone(harness.harness):
|
|
"""The standalone server harness
|
|
|
|
Properties:
|
|
job
|
|
The job object for this job
|
|
"""
|
|
|
|
def __init__(self, job, harness_args):
|
|
"""
|
|
job
|
|
The job object for this job
|
|
"""
|
|
self.autodir = os.path.abspath(os.environ['AUTODIR'])
|
|
self.setup(job) |