diff options
author | Jakob Unterwurzacher | 2017-05-30 19:01:32 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-05-30 19:01:32 +0200 |
commit | 1e598e96fcd2ef53ab2ee1e2b408e4ebe920e59b (patch) | |
tree | 6dd5bcae81e54b4935ecda0817518eca0ee45ebc /cli_args.go | |
parent | ca5f469ea334bc5e93e25dae11140887d77b9673 (diff) |
main: add "-info" option
Pretty-prints the config while stripping out sensitive
(and uninteresting) data
https://github.com/rfjakob/gocryptfs/issues/111
Diffstat (limited to 'cli_args.go')
-rw-r--r-- | cli_args.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli_args.go b/cli_args.go index eb844e1..5f4b328 100644 --- a/cli_args.go +++ b/cli_args.go @@ -20,7 +20,7 @@ type argContainer struct { debug, init, zerokey, fusedebug, openssl, passwd, fg, version, plaintextnames, quiet, nosyslog, wpanic, longnames, allow_other, ro, reverse, aessiv, nonempty, raw64, - noprealloc, speed, hkdf, serialize_reads, forcedecode, hh bool + noprealloc, speed, hkdf, serialize_reads, forcedecode, hh, info bool masterkey, mountpoint, cipherdir, cpuprofile, extpass, memprofile, ko, passfile, ctlsock, fsname string // Configuration file name override @@ -126,6 +126,7 @@ func parseCliOpts() (args argContainer) { flagSet.BoolVar(&args.forcedecode, "forcedecode", false, "Force decode of files even if integrity check fails."+ " Requires gocryptfs to be compiled with openssl support and implies -openssl true") flagSet.BoolVar(&args.hh, "hh", false, "Show this long help text") + flagSet.BoolVar(&args.info, "info", false, "Display information about CIPHERDIR") flagSet.StringVar(&args.masterkey, "masterkey", "", "Mount with explicit master key") flagSet.StringVar(&args.cpuprofile, "cpuprofile", "", "Write cpu profile to specified file") flagSet.StringVar(&args.memprofile, "memprofile", "", "Write memory profile to specified file") |