aboutsummaryrefslogtreecommitdiffstats
path: root/cli/icevault
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2015-03-31 22:14:34 +0200
committerGuilhem Moulin <guilhem@fripost.org>2015-03-31 22:15:39 +0200
commitc4927a459b2d091641813db1a420bdafaff3b391 (patch)
treeb57158bca3a64345d1abb05df914ab8a6ac09871 /cli/icevault
parent9d0110ea6d91eff9a047fabab50302da2147bdf0 (diff)
Add --quiet to the default gpg options.
Diffstat (limited to 'cli/icevault')
-rwxr-xr-xcli/icevault2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/icevault b/cli/icevault
index 9f58502..7bbc37f 100755
--- a/cli/icevault
+++ b/cli/icevault
@@ -169,7 +169,7 @@ sub loadConfig() {
error "Insecure C<%s>", $CONFIG{pwgen} unless $CONFIG{pwgen} =~ /\A([-_\@a-zA-Z0-9\.%\/= ]+)\z/;
$CONFIG{pwgen} = $1;
- $CONFIG{gpg} //= 'gpg';
+ $CONFIG{gpg} //= qw/gpg --quiet/;
$CONFIG{gpg} =~ s#\A~/#$ENV{HOME}#;
error "Insecure C<%s>", $CONFIG{gpg} unless $CONFIG{gpg} =~ /\A([-_\@a-zA-Z0-9\.%\/= ]+)\z/;
$CONFIG{gpg} = $1;