diff options
author | Linus Nordberg <linus@nordberg.se> | 2021-06-03 06:52:10 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2021-06-03 06:52:10 +0200 |
commit | 1d147b0906e1b3ba6ac2a59f99503d0e67933330 (patch) | |
tree | 7c483466fd15dea03295403bef8e4b40d4b41416 /siglog-witness.py | |
parent | e55094358cd825a12ea3f4fd542c6cfe874966b2 (diff) |
disallow the short form for --bootstrap-log
Since it's devastating to the value of the signature to not require a
consistency proof, make it less likely that it's done inadvertently.
Diffstat (limited to 'siglog-witness.py')
-rwxr-xr-x | siglog-witness.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/siglog-witness.py b/siglog-witness.py index fe15c4e..146caf7 100755 --- a/siglog-witness.py +++ b/siglog-witness.py @@ -36,7 +36,7 @@ class Parser: p = argparse.ArgumentParser( description='Sign the most recently published tree head from a given siglog, after verifying it against an older tree.') - p.add_argument('-b', '--bootstrap-log', + p.add_argument('--bootstrap-log', action='store_true', help="Sign and save fetched tree head without verifying a consistency proof against a previous tree head. NOTE: User intervention required.") |