Exemple #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
 def __init__(self):
     EntityManager.__init__(self)
     # Variables declared in the global scope
     self.variables = {}
     # Top service
     self.source = Service('root')
     self.source.simulate = True
Exemple #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
Exemple #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