Skip to content
Snippets Groups Projects
Unverified Commit a2c863ae authored by Simon Josefsson's avatar Simon Josefsson
Browse files

Don't call gpgv if canary failed, apparently apt does not care about the exit code.

parent 94b23044
No related branches found
No related tags found
No related merge requests found
......@@ -19,8 +19,6 @@ set -e
AT="$@"
canary_rc=0
eval $(apt-config shell BASE_URL Canary::Base-URL)
if test -z "$BASE_URL"; then
logger --tag apt-canary "witness URL not configured"
......@@ -43,23 +41,15 @@ else
URL="$BASE_URL/$SHA256.witness"
if wget -q -O- $URL | grep "^Canary: $URL$" > /dev/null; then
canary_rc=0
logger --tag apt-canary "successful witness $URL"
else
canary_rc=1
logger --tag apt-canary "unable to find successful witness $URL"
cat $datafile | logger --tag apt-canary-datafile
cat $signfile | logger --tag apt-canary-signfile
fi
fi
gpgv $AT
gpgv_rc=$?
if test "$canary_rc" != "0"; then
exit $canary_rc
exit 1
fi
fi
exit $gpgv_rc
exec gpgv $AT
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment