Lines Matching refs:options
52 def telnetserver(options): argument
54 if options.pidfile:
59 with open(options.pidfile, "w") as f:
62 local_bind = (HOST, options.port)
310 def setup_logging(options): argument
320 if options.logfile:
321 handler = ClosingFileHandler(options.logfile)
329 if options.verbose:
353 options = get_options() variable
356 setup_logging(options)
360 rc = telnetserver(options)
365 if options.pidfile and os.path.isfile(options.pidfile):
366 os.unlink(options.pidfile)