ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""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)