Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 3
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
Exemplo n.º 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