move GC docs out of proposed/, since it's all implemented now. Add reference to configuration.txt . Add expire.*= suggestions to tahoe.cfg .

This commit is contained in:
Brian Warner 2009-03-23 16:08:20 -07:00
parent 5e8c31c3b6
commit b5d4972a7a
3 changed files with 13 additions and 0 deletions

View File

@ -310,6 +310,17 @@ reserved_space = (str, optional)
"100MB", "100M", "100000000B", "100000000", and "100000kb" all mean the same
thing. Likewise, "1MiB", "1024KiB", and "1048576B" all mean the same thing.
expire.enabled =
expire.mode =
expire.override_lease_duration =
expire.cutoff_date =
expire.immutable =
expire.mutable =
These settings control garbage-collection, in which the server will delete
shares that no longer have an up-to-date lease on them. Please see the
neighboring "garbage-collection.txt" document for full details.
== Running A Helper ==

View File

@ -115,6 +115,8 @@ def create_client(basedir, config, out=sys.stdout, err=sys.stderr):
c.write("enabled = %s\n" % boolstr[storage_enabled])
c.write("#readonly =\n")
c.write("#reserved_space =\n")
c.write("#expire.enabled =\n")
c.write("#expire.mode =\n")
c.write("\n")
c.write("[helper]\n")