コード例 #1
0
ファイル: server.py プロジェクト: Chocorean/OctoPrint
            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
コード例 #2
0
ファイル: __init__.py プロジェクト: TopherMan/OctoPrint
	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
コード例 #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
コード例 #4
0
ファイル: __init__.py プロジェクト: cronos45/AstroBox
	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
コード例 #5
0
ファイル: server.py プロジェクト: devdej/OctoPrint
			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
コード例 #6
0
ファイル: server.py プロジェクト: happycupofjava/OctoPuppet
			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