예제 #1
0
 def __init__(self):
     EntityManager.__init__(self)
     # Variables declared in the global scope
     self.variables = {}
     # Top service
     self.source = Service('root')
     self.source.simulate = True
예제 #2
0
 def __init__(self):
     EntityManager.__init__(self)
     # Variables declared in the global scope
     self.variables = {}
     # Top service
     self.source = Service('root')
     self.source.simulate = True
예제 #3
0
파일: Action.py 프로젝트: mdlx/milkcheck
    def __init__(self):
        EntityManager.__init__(self)
        # Current fanout
        self.fanout = None
        # ClusterShell default value
        self.default_fanout = 64
        # Count tasks which worked
        self._tasks_done_count = 0
        # Count tasks which are running
        self._tasks_count = 0
        # MasterTask
        self._master_task = task_self()

        self.dryrun = False
예제 #4
0
    def __init__(self):
        EntityManager.__init__(self)
        # Current fanout
        self.fanout = None
        # ClusterShell default value
        self.default_fanout = 64
        # Count tasks which worked
        self._tasks_done_count = 0
        # Count tasks which are running
        self._tasks_count = 0
        # MasterTask
        self._master_task = task_self()

        self.dryrun = False