Example #1
0
            def __init__(
                self,
                pidfile,
                basedir,
                configfile,
                overlays,
                host,
                port,
                v6_only,
                debug,
                allow_root,
                logging_config,
                verbosity,
                safe_mode,
                ignore_blacklist,
            ):
                Daemon.__init__(self, pidfile)

                self._basedir = basedir
                self._configfile = configfile
                self._overlays = overlays
                self._host = host
                self._port = port
                self._v6_only = v6_only
                self._debug = debug
                self._allow_root = allow_root
                self._logging_config = logging_config
                self._verbosity = verbosity
                self._safe_mode = safe_mode
                self._ignore_blacklist = ignore_blacklist
Example #2
0
	def __init__(self, pidfile, configfile, basedir, host, port, debug):
		Daemon.__init__(self, pidfile)

		self._configfile = configfile
		self._basedir = basedir
		self._host = host
		self._port = port
		self._debug = debug
Example #3
0
	def __init__(self, pidfile, configfile, basedir, host, port, debug, allowRoot):
		Daemon.__init__(self, pidfile)

		self._configfile = configfile
		self._basedir = basedir
		self._host = host
		self._port = port
		self._debug = debug
		self._allowRoot = allowRoot
Example #4
0
	def __init__(self, pidfile, configfile, basedir, host, port, debug, allowRoot, logConf):
		Daemon.__init__(self, pidfile)

		self._configfile = configfile
		self._basedir = basedir
		self._host = host
		self._port = port
		self._debug = debug
		self._allowRoot = allowRoot
		self._logConf = logConf
Example #5
0
			def __init__(self, pidfile, basedir, configfile, host, port, debug, allow_root, logging_config, verbosity, safe_mode):
				Daemon.__init__(self, pidfile)

				self._basedir = basedir
				self._configfile = configfile
				self._host = host
				self._port = port
				self._debug = debug
				self._allow_root = allow_root
				self._logging_config = logging_config
				self._verbosity = verbosity
				self._safe_mode = safe_mode
Example #6
0
			def __init__(self, pidfile, basedir, configfile, host, port, debug, allow_root, logging_config, verbosity, safe_mode):
				Daemon.__init__(self, pidfile)

				self._basedir = basedir
				self._configfile = configfile
				self._host = host
				self._port = port
				self._debug = debug
				self._allow_root = allow_root
				self._logging_config = logging_config
				self._verbosity = verbosity
				self._safe_mode = safe_mode