summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2016-02-21 19:06:37 +1000
committerAllan McRae <allan@archlinux.org>2016-02-26 15:18:44 +1000
commitf363cf78575cc4c54dee5801274e55d07e0971b1 (patch)
tree0a5669b9cc3e15e6bdcda9a17020d2457573fc9c
parentaf5d69d59d2deb44bf21bb3f3d9587ec656bbc62 (diff)
downloadpacman-f363cf78575cc4c54dee5801274e55d07e0971b1.tar.gz
pacman-f363cf78575cc4c54dee5801274e55d07e0971b1.zip
repo-add: do not alter the database if only verifying signature
Fixes FS#48085. Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--scripts/repo-add.sh.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in
index cab5e048..d62f9c4d 100644
--- a/scripts/repo-add.sh.in
+++ b/scripts/repo-add.sh.in
@@ -798,6 +798,17 @@ fi
check_xdelta
+if (( VERIFY && ${#args[@]} == 1 )); then
+ for repo in "db" "files"; do
+ dbfile=${repodir}/$REPO_DB_PREFIX.$repo.$REPO_DB_SUFFIX
+
+ if [[ -f $dbfile ]]; then
+ verify_signature "$dbfile"
+ fi
+ done
+ exit 0
+fi
+
prepare_repo_db
for arg in "${args[@]:1}"; do