diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2007-09-12 17:05:19 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2007-09-12 17:05:19 -0300 |
commit | bf6d5b428e247dd28fb593cc3677da4e5eee0a54 (patch) | |
tree | 373ce28ef148d37ce981aad31a11acd925feae7a /cmdline | |
parent | 60504a4198070671b2c4fe7045564f1d7a228f71 (diff) |
* Add support to apt-key to export keys to stdout. Thanks to "Dwayne
C. Litzenberger" <dlitz@dlitz.net> for the patch (closes: #441942)
Diffstat (limited to 'cmdline')
-rwxr-xr-x | cmdline/apt-key | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmdline/apt-key b/cmdline/apt-key index 90ecae2cf..3bd1a92d9 100755 --- a/cmdline/apt-key +++ b/cmdline/apt-key @@ -39,6 +39,8 @@ usage() { echo echo " apt-key add <file> - add the key contained in <file> ('-' for stdin)" echo " apt-key del <keyid> - remove the key <keyid>" + echo " apt-key export <keyid> - output the key <keyid>" + echo " apt-key exportall - output all trusted keys" echo " apt-key update - update keys using the keyring package" echo " apt-key list - list keys" echo @@ -75,6 +77,12 @@ case "$command" in finger*) $GPG --batch --fingerprint ;; + export) + $GPG --armor --export "$1" + ;; + exportall) + $GPG --armor --export + ;; adv*) echo "Executing: $GPG $*" $GPG $* |