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
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
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
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
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