From 0f000784ce530f643dc01a88b5f5f01641078900 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@lothar.com>
Date: Thu, 11 Oct 2007 02:01:23 -0700
Subject: [PATCH] create_node: use a webport by default, on localhost:8011

---
 src/allmydata/scripts/create_node.py | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/allmydata/scripts/create_node.py b/src/allmydata/scripts/create_node.py
index 76263e20..af20957c 100644
--- a/src/allmydata/scripts/create_node.py
+++ b/src/allmydata/scripts/create_node.py
@@ -6,6 +6,8 @@ from allmydata.scripts.common import BasedirMixin, NoDefaultBasedirMixin
 class CreateClientOptions(BasedirMixin, usage.Options):
     optParameters = [
         ["basedir", "C", None, "which directory to create the client in"],
+        ["webport", "p", "tcp:8011:interface=127.0.0.1",
+         "which TCP port to run the HTTP interface on. Use 'none' to disable."],
         ]
 
 class CreateIntroducerOptions(NoDefaultBasedirMixin, usage.Options):
@@ -50,6 +52,10 @@ def create_client(basedir, config, out=sys.stdout, err=sys.stderr):
     f = open(os.path.join(basedir, "client.tac"), "w")
     f.write(client_tac)
     f.close()
+    if config['webport'].lower() != "none":
+        f = open(os.path.join(basedir, "webport"), "w")
+        f.write(config['webport'] + "\n")
+        f.close()
     print >>out, "client created in %s" % basedir
     print >>out, " please copy introducer.furl and vdrive.furl into the directory"
 
-- 
2.45.2