1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-21 23:38:49 -05:00

repo-add: do not alter the database if only verifying signature

Fixes FS#48085.

Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Allan McRae 2016-02-21 19:06:37 +10:00
parent af5d69d59d
commit f363cf7857

View File

@ -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