mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-26 08:01:06 +00:00
17 lines
305 B
Python
17 lines
305 B
Python
from .run_common import (
|
|
RunOptions as _RunOptions,
|
|
run,
|
|
)
|
|
|
|
__all__ = [
|
|
"DaemonizeOptions",
|
|
"daemonize",
|
|
]
|
|
|
|
class DaemonizeOptions(_RunOptions):
|
|
subcommand_name = "daemonize"
|
|
|
|
def daemonize(config):
|
|
print("'tahoe daemonize' is deprecated; see 'tahoe run'")
|
|
return run(config)
|