portsnap: Detect error immediately if we can't fetch the snapshot metadata.
Also add some quotes around command substitution where useful and possible. Reviewed by: cperciva MFC after: 1 week
This commit is contained in:
parent
943e8837f5
commit
56aec06683
@ -536,9 +536,9 @@ fetch_metadata() {
|
||||
rm -f ${SNAPSHOTHASH} tINDEX.new
|
||||
|
||||
echo ${NDEBUG} "Fetching snapshot metadata... "
|
||||
fetch ${QUIETFLAG} http://${SERVERNAME}/t/${SNAPSHOTHASH}
|
||||
fetch ${QUIETFLAG} http://${SERVERNAME}/t/${SNAPSHOTHASH} \
|
||||
2>${QUIETREDIR} || return
|
||||
if [ `${SHA256} -q ${SNAPSHOTHASH}` != ${SNAPSHOTHASH} ]; then
|
||||
if [ "`${SHA256} -q ${SNAPSHOTHASH}`" != ${SNAPSHOTHASH} ]; then
|
||||
echo "snapshot metadata corrupt."
|
||||
return 1
|
||||
fi
|
||||
@ -606,7 +606,7 @@ fetch_index_sanity() {
|
||||
# Verify a list of files
|
||||
fetch_snapshot_verify() {
|
||||
while read F; do
|
||||
if [ `gunzip -c snap/${F} | ${SHA256} -q` != ${F} ]; then
|
||||
if [ "`gunzip -c snap/${F} | ${SHA256} -q`" != ${F} ]; then
|
||||
echo "snapshot corrupt."
|
||||
return 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user