[pacman-dev] [PATCH 5/5] RFC: pacman-key --receive without keyserver arg
Dan McGee
dan at archlinux.org
Thu Aug 25 01:11:03 EDT 2011
---
Thoughts? And why isn't this called --recv-keys like gpg?
scripts/pacman-key.sh.in | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in
index 74ecfcf..819ec69 100644
--- a/scripts/pacman-key.sh.in
+++ b/scripts/pacman-key.sh.in
@@ -60,7 +60,7 @@ usage() {
echo "$(gettext " -f, --finger [<keyid(s)>] List fingerprint for specified or all keyids")"
echo "$(gettext " -h, --help Show this help message and exit")"
echo "$(gettext " -l, --list-keys [<keyid(s)>] List the specified or all keys")"
- echo "$(gettext " -r, --receive <keyserver> <keyid(s)> Fetch the specified keyids")"
+ echo "$(gettext " -r, --receive <keyid(s)> Fetch the specified keyids")"
echo "$(gettext " -u, --updatedb Update the trustdb of pacman")"
echo "$(gettext " -v, --verify <signature> Verify the file specified by the signature")"
echo "$(gettext " -V, --version Show program version")"
@@ -265,7 +265,7 @@ receive_keys() {
error "$(gettext "You need to specify the keyserver and at least one key identifier")"
exit 1
fi
- "${GPG_PACMAN[@]}" --keyserver "$KEYSERVER" --recv-keys "${KEYIDS[@]}"
+ "${GPG_PACMAN[@]}" --recv-keys "${KEYIDS[@]}"
}
edit_keys() {
@@ -348,7 +348,7 @@ while true; do
--init) INIT=1 ;;
-l|--list-keys) LISTKEYS=1; [[ -n $2 && ${2:0:1} != "-" ]] && shift && KEYIDS=($1) ;;
--list-sigs) LISTSIGS=1; [[ -n $2 && ${2:0:1} != "-" ]] && shift && KEYIDS=($1) ;;
- -r|--receive) RECEIVE=1; shift; TMP=($1); KEYSERVER=${TMP[0]}; KEYIDS=(${TMP[@]:1}); unset TMP;;
+ -r|--receive) RECEIVE=1; shift; KEYIDS=($1);;
--reload) RELOAD=1 ;;
-u|--updatedb) UPDATEDB=1 ;;
-v|--verify) VERIFY=1; shift; SIGNATURE=$1 ;;
--
1.7.6
More information about the pacman-dev
mailing list