blob: 893d2f3ceb80732206ad0e0ab204c00b85237ef9 [file] [log] [blame]
"""The standalone harness interface
The default interface as required for the standalone reboot helper.
"""
__author__ = """Copyright Andy Whitcroft 2007"""
import os
from autotest_lib.client.bin import 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)