[pacman-dev] [PATCH] Create pacman keyring directory if missing

Ray Kohler ataraxia937 at gmail.com
Thu Mar 24 19:05:48 EDT 2011


Signed-off-by: Ray Kohler <ataraxia937 at gmail.com>
---
 scripts/pacman-key.sh.in |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/scripts/pacman-key.sh.in b/scripts/pacman-key.sh.in
index 5746e64..ccc7f92 100644
--- a/scripts/pacman-key.sh.in
+++ b/scripts/pacman-key.sh.in
@@ -246,6 +246,12 @@ if [[ GPGDIR=$(find_config "GPGDir") == 0 ]]; then
 fi
 GPG_PACMAN="gpg --homedir ${PACMAN_KEYRING_DIR}"
 
+# Try to create $PACMAN_KEYRING_DIR if non-existent
+# Check for simple existence rather than for a directory as someone may want
+# to use a symlink here
+# Force mode 700 as gpg complains if any group or other access is present
+[[ -e ${PACMAN_KEYRING_DIR} ]] || mkdir -p -m 700 "${PACMAN_KEYRING_DIR}"
+
 # Parse and execute command
 command="$1"
 if [[ -z "${command}" ]]; then
-- 
1.7.4.1



More information about the pacman-dev mailing list