]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
startstop_node.py: don't pass config to do_start() and do_stop()
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 21 Sep 2007 22:03:15 +0000 (15:03 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 21 Sep 2007 22:03:15 +0000 (15:03 -0700)
src/allmydata/scripts/startstop_node.py

index 96df1f71a3080d378f24b228eb66718fbbc15eb2..c2d7df48975db654fdb6cd232fde9e829cfdd43b 100644 (file)
@@ -25,7 +25,7 @@ class RestartOptions(BasedirMixin, usage.Options):
          "of 'restart'"],
         ]
 
-def do_start(basedir, config, out=sys.stdout, err=sys.stderr):
+def do_start(basedir, out=sys.stdout, err=sys.stderr):
     print >>out, "STARTING", basedir
     if os.path.exists(os.path.join(basedir, "client.tac")):
         tac = "client.tac"
@@ -66,7 +66,7 @@ def do_start(basedir, config, out=sys.stdout, err=sys.stderr):
         print >>err, "%s node probably not started" % type
         return 1
 
-def do_stop(basedir, config, out=sys.stdout, err=sys.stderr):
+def do_stop(basedir, out=sys.stdout, err=sys.stderr):
     print >>out, "STOPPING", basedir
     pidfile = os.path.join(basedir, "twistd.pid")
     if not os.path.exists(pidfile):
@@ -100,19 +100,19 @@ def do_stop(basedir, config, out=sys.stdout, err=sys.stderr):
 def start(config, stdout, stderr):
     rc = 0
     for basedir in config['basedirs']:
-        rc = do_start(basedir, config, stdout, stderr) or rc
+        rc = do_start(basedir, stdout, stderr) or rc
     return rc
 
 def stop(config, stdout, stderr):
     rc = 0
     for basedir in config['basedirs']:
-        rc = do_stop(basedir, config, stdout, stderr) or rc
+        rc = do_stop(basedir, stdout, stderr) or rc
     return rc
 
 def restart(config, stdout, stderr):
     rc = 0
     for basedir in config['basedirs']:
-        rc = do_stop(basedir, config, stdout, stderr) or rc
+        rc = do_stop(basedir, stdout, stderr) or rc
     if rc == 2 and config['force']:
         print >>stderr, "ignoring couldn't-stop"
         rc = 0
@@ -120,7 +120,7 @@ def restart(config, stdout, stderr):
         print >>stderr, "not restarting"
         return rc
     for basedir in config['basedirs']:
-        rc = do_start(basedir, config, stdout, stderr) or rc
+        rc = do_start(basedir, stdout, stderr) or rc
     return rc