]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
create_node.py: add comments to default tahoe.cfg to clarify the meaning of each...
authordavid-sarah <david-sarah@jacaranda.org>
Mon, 17 Jan 2011 05:24:19 +0000 (21:24 -0800)
committerdavid-sarah <david-sarah@jacaranda.org>
Mon, 17 Jan 2011 05:24:19 +0000 (21:24 -0800)
src/allmydata/scripts/create_node.py

index 26891b91f1d58d74312787a5d97d6083e432b487..e204bafa2858df7ad2a66629f6a106f31fcd45df 100644 (file)
@@ -112,10 +112,13 @@ def create_node(config, out=sys.stdout, err=sys.stderr):
     write_node_config(c, config)
 
     c.write("[client]\n")
+    c.write("# Which services should this client connect to?\n")
     c.write("introducer.furl = %s\n" % config.get("introducer", ""))
     c.write("helper.furl =\n")
     c.write("#key_generator.furl =\n")
     c.write("#stats_gatherer.furl =\n")
+    c.write("\n")
+    c.write("# What encoding parameters should this client use for uploads?\n")
     c.write("#shares.needed = 3\n")
     c.write("#shares.happy = 7\n")
     c.write("#shares.total = 10\n")
@@ -123,6 +126,7 @@ def create_node(config, out=sys.stdout, err=sys.stderr):
 
     boolstr = {True:"true", False:"false"}
     c.write("[storage]\n")
+    c.write("# Shall this node provide storage service?\n")
     storage_enabled = not config.get("no-storage", None)
     c.write("enabled = %s\n" % boolstr[storage_enabled])
     c.write("#readonly =\n")
@@ -132,6 +136,7 @@ def create_node(config, out=sys.stdout, err=sys.stderr):
     c.write("\n")
 
     c.write("[helper]\n")
+    c.write("# Shall this node run a helper service that clients can use?\n")
     c.write("enabled = false\n")
     c.write("\n")