Ejemplo n.º 1
0
    def __init__(self):
        Application.__init__(self, "remote")

        self.delay = 0
        self.port = 0
        self.host = "localhost"
        self.method = "udp"

        return
Ejemplo n.º 2
0
 def __init__(self):
     Application.__init__(self, "fmc")
     return
Ejemplo n.º 3
0
 def __init__(self):
     Application.__init__(self, "users")
     self._userManager = None
     return
Ejemplo n.º 4
0
 def __init__(self):
     Application.__init__(self, "session")
     self._session = None
     return
Ejemplo n.º 5
0
 def __init__(self):
     Application.__init__(self, "expect")
     return
Ejemplo n.º 6
0
 def __init__(self):
     Application.__init__(self, "hello")
     return
Ejemplo n.º 7
0
 def _defaults(self):
     Application._defaults(self)
     self.inventory.port = 50010  # default port doesn't work
Ejemplo n.º 8
0
 def __init__(self, name=None):
     Application.__init__(self, name, facility='daemon')
     Daemon.__init__(self)
Ejemplo n.º 9
0
 def _defaults(self):
     Application._defaults(self)
     self.inventory.port = 50010 # default port doesn't work
Ejemplo n.º 10
0
 def __init__(self, name=None):
     Application.__init__(self, name, facility='daemon')
     Daemon.__init__(self)
Ejemplo n.º 11
0
 def __init__(self):
     Application.__init__(self, "stationery")
     return
Ejemplo n.º 12
0
 def __init__(self):
     Application.__init__(self, "simple")
     return
Ejemplo n.º 13
0
 def _configure(self):
     Application._configure(self)
     import os
     self.home = os.path.abspath(self.inventory.home)
     self.cmd = self.inventory.cmd
     return
Ejemplo n.º 14
0
 def _configure(self):
     Application._configure(self)
     import os
     self.home = os.path.abspath(self.inventory.home)
     self.cmd = self.inventory.cmd
     return