mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-27 19:55:52 +00:00
11 lines
233 B
Python
11 lines
233 B
Python
|
from .tahoe_daemonize import daemonize, DaemonizeOptions
|
||
|
|
||
|
|
||
|
class RunOptions(DaemonizeOptions):
|
||
|
subcommand_name = "run"
|
||
|
|
||
|
|
||
|
def run(config):
|
||
|
config.twistd_args = config.twistd_args + ("--nodaemon",)
|
||
|
return daemonize(config)
|