]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
startstop_node.py: improvements to comments.
authorDavid-Sarah Hopwood <david-sarah@jacaranda.org>
Thu, 3 Jan 2013 18:54:04 +0000 (18:54 +0000)
committerDaira Hopwood <daira@jacaranda.org>
Tue, 14 Oct 2014 17:12:20 +0000 (18:12 +0100)
Signed-off-by: David-Sarah Hopwood <david-sarah@jacaranda.org>
src/allmydata/scripts/startstop_node.py

index a0c69bb602aa9589169952c1e9c20a29d14cc776..424b3289f6539ee63a5fbbde8aa190b99d0a70c4 100644 (file)
@@ -147,7 +147,7 @@ def start(config, out=sys.stdout, err=sys.stderr):
         verb = "running"
     print >>out, "%s node in %s" % (verb, basedir)
     twistd.runApp(twistd_config)
-    # we should only reach here if --nodaemon was used
+    # we should only reach here if --nodaemon or equivalent was used
     return 0
 
 def stop(config, out=sys.stdout, err=sys.stderr):
@@ -219,7 +219,10 @@ def restart(config, stdout, stderr):
 
 def run(config, stdout, stderr):
     config.twistd_args = config.twistd_args + ("--nodaemon",)
-    # also ("--logfile", "tahoesvc.log")
+    # Previously we would do the equivalent of adding ("--logfile", "tahoesvc.log"),
+    # but that redirects stdout/stderr which is often unhelpful, and the user can
+    # add that option explicitly if they want.
+
     return start(config, stdout, stderr)