[pacman-dev] [PATCH] pacman-key: Add some variable quotes and fix vim modeline for securemodelines

Timothy Redaelli tredaelli at archlinux.info
Fri Dec 23 09:15:12 EST 2011


From: Timothy Redaelli <timothy.redaelli at gmail.com>

Signed-off-by: Timothy Redaelli <timothy.redaelli at gmail.com>
---
 scripts/pacman-key.sh.in |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in
index e0f48f5..c033da4 100644
--- a/scripts/pacman-key.sh.in
+++ b/scripts/pacman-key.sh.in
@@ -450,9 +450,9 @@ fi
 # file, falling back on a hard default
 PACMAN_KEYRING_DIR=${PACMAN_KEYRING_DIR:-$(get_from "$CONFIG" "GPGDir" "@sysconfdir@/pacman.d/gnupg")}
 
-GPG_PACMAN=(gpg --homedir ${PACMAN_KEYRING_DIR} --no-permission-warning)
+GPG_PACMAN=(gpg --homedir "${PACMAN_KEYRING_DIR}" --no-permission-warning)
 if [[ -n ${KEYSERVER} ]]; then
-	GPG_PACMAN+=(--keyserver ${KEYSERVER})
+	GPG_PACMAN+=(--keyserver "${KEYSERVER}")
 fi
 
 # check only a single operation has been given
@@ -492,11 +492,11 @@ fi
 (( POPULATE )) && populate_keyring
 (( RECEIVE )) && "${GPG_PACMAN[@]}" --recv-keys "${KEYIDS[@]}"
 (( REFRESH )) && "${GPG_PACMAN[@]}" --refresh-keys "${KEYIDS[@]}"
-(( VERIFY )) && "${GPG_PACMAN[@]}" --verify $SIGNATURE
+(( VERIFY )) && "${GPG_PACMAN[@]}" --verify "$SIGNATURE"
 
 if (( UPDATEDB )); then
 	msg "$(gettext "Updating trust database...")"
 	"${GPG_PACMAN[@]}" --batch --check-trustdb
 fi
 
-# vim: set ts=2 sw=2 noet:
+# vim: set ts=2 sw=2 noet
-- 
1.7.8.1



More information about the pacman-dev mailing list