From 922663a7e27d9381989abefb5dc06182ead3c7c5 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Thu, 16 Aug 2007 16:53:27 -0700
Subject: [PATCH] cmdline: change "--server" to "--node-url" and make it have
 no default value

---
 src/allmydata/scripts/cli.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/allmydata/scripts/cli.py b/src/allmydata/scripts/cli.py
index c954f9a3..5eec4a29 100644
--- a/src/allmydata/scripts/cli.py
+++ b/src/allmydata/scripts/cli.py
@@ -8,8 +8,8 @@ class VDriveOptions(BaseOptions, usage.Options):
         ["vdrive", "d", "global",
          "which virtual drive to use: 'global' or 'private'"],
 
-        ["server", "s", "http://tahoebs1.allmydata.com:8011/",
-         "which vdrive server to use, a URL like http://example.com/"],
+        ["node-url", "u", None,
+         "URL of the tahoe node to use, a URL like \"http://127.0.0.1:8888\""],
         ]
 
 class ListOptions(VDriveOptions):
@@ -52,7 +52,7 @@ subCommands = [
 
 def list(config, stdout, stderr):
     from allmydata.scripts import tahoe_ls
-    rc = tahoe_ls.list(config['server'],
+    rc = tahoe_ls.list(config['node-url'],
                        config['vdrive'],
                        config['vdrive_filename'])
     return rc
@@ -61,7 +61,7 @@ def get(config, stdout, stderr):
     from allmydata.scripts import tahoe_get
     vdrive_filename = config['vdrive_filename']
     local_filename = config['local_filename']
-    rc = tahoe_get.get(config['server'],
+    rc = tahoe_get.get(config['node-url'],
                        config['vdrive'],
                        vdrive_filename,
                        local_filename)
@@ -84,7 +84,7 @@ def put(config, stdout, stderr):
         verbosity = 0
     else:
         verbosity = 2
-    rc = tahoe_put.put(config['server'],
+    rc = tahoe_put.put(config['node-url'],
                        config['vdrive'],
                        vdrive_filename,
                        local_filename,
-- 
2.45.2