예제 #1
0
파일: remote.py 프로젝트: zliu72/Combustion
    def __init__(self):
        Application.__init__(self, "remote")

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

        return
예제 #2
0
 def __init__(self):
     Application.__init__(self, "fmc")
     return
예제 #3
0
파일: users.py 프로젝트: zliu72/Combustion
 def __init__(self):
     Application.__init__(self, "users")
     self._userManager = None
     return
예제 #4
0
 def __init__(self):
     Application.__init__(self, "session")
     self._session = None
     return
예제 #5
0
 def __init__(self):
     Application.__init__(self, "expect")
     return
예제 #6
0
 def __init__(self):
     Application.__init__(self, "hello")
     return
예제 #7
0
 def _defaults(self):
     Application._defaults(self)
     self.inventory.port = 50010  # default port doesn't work
예제 #8
0
 def __init__(self, name=None):
     Application.__init__(self, name, facility='daemon')
     Daemon.__init__(self)
예제 #9
0
 def _defaults(self):
     Application._defaults(self)
     self.inventory.port = 50010 # default port doesn't work
예제 #10
0
 def __init__(self, name=None):
     Application.__init__(self, name, facility='daemon')
     Daemon.__init__(self)
예제 #11
0
 def __init__(self):
     Application.__init__(self, "stationery")
     return
예제 #12
0
파일: simple.py 프로젝트: zliu72/Combustion
 def __init__(self):
     Application.__init__(self, "simple")
     return
예제 #13
0
 def _configure(self):
     Application._configure(self)
     import os
     self.home = os.path.abspath(self.inventory.home)
     self.cmd = self.inventory.cmd
     return
예제 #14
0
 def _configure(self):
     Application._configure(self)
     import os
     self.home = os.path.abspath(self.inventory.home)
     self.cmd = self.inventory.cmd
     return