diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-10-29 23:04:21 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-11-10 15:48:25 +0100 |
commit | 40fd0c1ca184c5f04e1d345585df0a059d3a86fe (patch) | |
tree | 58477b79f23ac757d18e61259adbc8115db025fc /contrib | |
parent | 12c4bb6b62e02026529031112f389c00b1fc8196 (diff) | |
download | tor-40fd0c1ca184c5f04e1d345585df0a059d3a86fe.tar.gz tor-40fd0c1ca184c5f04e1d345585df0a059d3a86fe.zip |
Remove the torrc.complete file.
We haven't been keeping it up to date, and the manpage exists as a
replacement for users who want an overview of all available options.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/checkOptionDocs.pl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/contrib/checkOptionDocs.pl b/contrib/checkOptionDocs.pl index 425410d424..23e57b4897 100755 --- a/contrib/checkOptionDocs.pl +++ b/contrib/checkOptionDocs.pl @@ -4,7 +4,6 @@ use strict; my %options = (); my %descOptions = (); my %torrcSampleOptions = (); -my %torrcCompleteOptions = (); my %manPageOptions = (); # Load the canonical list as actually accepted by Tor. @@ -20,7 +19,7 @@ while (<F>) { } close F; -# Load the contents of torrc.sample and torrc.complete +# Load the contents of torrc.sample sub loadTorrc { my ($fname, $options) = @_; local *F; @@ -36,7 +35,6 @@ sub loadTorrc { } loadTorrc("./src/config/torrc.sample.in", \%torrcSampleOptions); -loadTorrc("./src/config/torrc.complete.in", \%torrcCompleteOptions); # Try to figure out what's in the man page. @@ -64,8 +62,6 @@ sub subtractHashes { # subtractHashes("No online docs", \%options, \%descOptions); # subtractHashes("Orphaned online docs", \%descOptions, \%options); -subtractHashes("Not in torrc.complete.in", \%options, \%torrcCompleteOptions); -subtractHashes("Orphaned in torrc.complete.in", \%torrcCompleteOptions, \%options); subtractHashes("Orphaned in torrc.sample.in", \%torrcSampleOptions, \%options); subtractHashes("Not in man page", \%options, \%manPageOptions); |