]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
startstop_node.py: rename internal command and twistd plugin class used to start...
authorDavid-Sarah Hopwood <david-sarah@jacaranda.org>
Thu, 3 Jan 2013 18:52:37 +0000 (18:52 +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 6669e9d7f044bba745865c4dfdcfbc19bef1d28d..90ec10464ea3817f56d3bc9fb0f5a3cddd62f7d2 100644 (file)
@@ -38,10 +38,10 @@ class RunOptions(StartOptions):
 
 
 class MyTwistdConfig(twistd.ServerOptions):
-    subCommands = [("XYZ", None, usage.Options, "node")]
+    subCommands = [("StartTahoeNode", None, usage.Options, "node")]
 
-class NodeStartingPlugin:
-    tapname = "xyznode"
+class StartTahoeNodePlugin:
+    tapname = "tahoenode"
     def __init__(self, nodetype, basedir):
         self.nodetype = nodetype
         self.basedir = basedir
@@ -104,7 +104,7 @@ def start(config, out=sys.stdout, err=sys.stderr):
         fileutil.make_dirs(os.path.join(basedir, "logs"))
         twistd_args.extend(["--logfile", os.path.join("logs", "twistd.log")])
     twistd_args.extend(config.twistd_args)
-    twistd_args.append("XYZ") # point at our NodeStartingPlugin
+    twistd_args.append("StartTahoeNode") # point at our StartTahoeNodePlugin
 
     twistd_config = MyTwistdConfig()
     try:
@@ -114,7 +114,7 @@ def start(config, out=sys.stdout, err=sys.stderr):
         print >>err, twistd_config
         print >>err, "tahoe start: %s" % (config.subCommand, ue)
         return 1
-    twistd_config.loadedPlugins = {"XYZ": NodeStartingPlugin(nodetype, basedir)}
+    twistd_config.loadedPlugins = {"StartTahoeNode": StartTahoeNodePlugin(nodetype, basedir)}
 
     # Unless --nodaemon was provided, the twistd.runApp() below spawns off a
     # child process, and the parent calls os._exit(0), so there's no way for