Browse Source

changed GPG parameters from -q to --quiet

under Qubes OS the use of qubes-gpg-client (instead of gpg) will not work with the -q option, but with the --quiet option.
As such using the full parameter names will not harm to all "normal" users, but make the script more stable for other users.
Additionaly it makes the scripts more readable for beginners to understand what the script is doing.
tags/v3.1
praschdorff 6 years ago
committed by GitHub
parent
commit
f91aaf0cdb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      credentials/getmuttpass

+ 1
- 1
credentials/getmuttpass View File

@@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash
pass=$(gpg2 -d -q ~/.config/mutt/credentials/$1.gpg)
pass=$(gpg2 --decrypt --quiet ~/.config/mutt/credentials/$1.gpg)
echo set smtp_pass=\"$pass\" echo set smtp_pass=\"$pass\"
echo set imap_pass=\"$pass\" echo set imap_pass=\"$pass\"

Loading…
Cancel
Save