summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2014-01-24 17:24:56 +0100
committerDavid Kalnischkies <david@kalnischkies.de>2014-09-27 00:12:14 +0200
commit4f51a496d56807c73586220dd736173d7783c8b3 (patch)
tree6d66bfc794a2c1bdf5bea3723836bb1b3b81f31a /cmdline
parent9fda3be1ae000e81e15dc8840271946e140765c9 (diff)
support (multiple) arguments properly in apt-key
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-key.in54
1 files changed, 27 insertions, 27 deletions
diff --git a/cmdline/apt-key.in b/cmdline/apt-key.in
index 66e26ef0c..ab62d4c8f 100644
--- a/cmdline/apt-key.in
+++ b/cmdline/apt-key.in
@@ -202,24 +202,27 @@ remove_key_from_keyring() {
remove_key() {
requires_root
- # if a --keyring was given, just remove from there
- if [ -n "$FORCED_KEYRING" ]; then
- remove_key_from_keyring "$FORCED_KEYRING" "$1"
- else
- # otherwise all known keyrings are up for inspection
- local TRUSTEDFILE="/etc/apt/trusted.gpg"
- eval $(apt-config shell TRUSTEDFILE Apt::GPGV::TrustedKeyring)
- eval $(apt-config shell TRUSTEDFILE Dir::Etc::Trusted/f)
- remove_key_from_keyring "$TRUSTEDFILE" "$1"
- TRUSTEDPARTS="/etc/apt/trusted.gpg.d"
- eval $(apt-config shell TRUSTEDPARTS Dir::Etc::TrustedParts/d)
- if [ -d "$TRUSTEDPARTS" ]; then
- for trusted in $(run-parts --list "$TRUSTEDPARTS" --regex '^.*\.gpg$'); do
- remove_key_from_keyring "$trusted" "$1"
- done
+ while [ -n "$1" ]; do
+ # if a --keyring was given, just remove from there
+ if [ -n "$FORCED_KEYRING" ]; then
+ remove_key_from_keyring "$FORCED_KEYRING" "$1"
+ else
+ # otherwise all known keyrings are up for inspection
+ local TRUSTEDFILE="/etc/apt/trusted.gpg"
+ eval $(apt-config shell TRUSTEDFILE Apt::GPGV::TrustedKeyring)
+ eval $(apt-config shell TRUSTEDFILE Dir::Etc::Trusted/f)
+ remove_key_from_keyring "$TRUSTEDFILE" "$1"
+ TRUSTEDPARTS="/etc/apt/trusted.gpg.d"
+ eval $(apt-config shell TRUSTEDPARTS Dir::Etc::TrustedParts/d)
+ if [ -d "$TRUSTEDPARTS" ]; then
+ for trusted in $(run-parts --list "$TRUSTEDPARTS" --regex '^.*\.gpg$'); do
+ remove_key_from_keyring "$trusted" "$1"
+ done
+ fi
fi
- fi
- aptkey_echo "OK"
+ aptkey_echo "OK"
+ shift
+ done
}
@@ -320,11 +323,11 @@ fi
case "$command" in
add)
requires_root
- $GPG --quiet --batch --import "$1"
+ $GPG --quiet --batch --import "$@"
aptkey_echo "OK"
;;
del|rm|remove)
- remove_key "$1"
+ remove_key "$@"
;;
update)
update
@@ -333,20 +336,17 @@ case "$command" in
net_update
;;
list)
- $GPG --batch --list-keys
+ $GPG --batch --list-keys "$@"
;;
finger*)
- $GPG --batch --fingerprint
- ;;
- export)
- $GPG --armor --export "$1"
+ $GPG --batch --fingerprint "$@"
;;
- exportall)
- $GPG --armor --export
+ export|exportall)
+ $GPG --armor --export "$@"
;;
adv*)
aptkey_echo "Executing: $GPG $*"
- $GPG $*
+ $GPG "$@"
;;
help)
usage