| version 1.115, 2021/12/23 21:43:04 |
version 1.117, 2021/12/23 21:52:21 |
|
|
| [ "${devices[*]:-}" ] || exit |
[ "${devices[*]:-}" ] || exit |
| |
|
| if "$DOWNLOAD"; then |
if "$DOWNLOAD"; then |
| |
set +o noclobber # we want to get the latest CFILE |
| fetch "$CFILE" |
fetch "$CFILE" |
| |
set -o noclobber |
| ! signify -qVep "$FWPUB_KEY" -x "$CFILE" -m "$CFILE" && |
! signify -qVep "$FWPUB_KEY" -x "$CFILE" -m "$CFILE" && |
| echo "Signature check of SHA256.sig failed" >&2 && exit 1 |
echo "Signature check of SHA256.sig failed" >&2 && exit 1 |
| fi |
fi |
|
|
| if "$DOWNLOAD"; then |
if "$DOWNLOAD"; then |
| "$VERBOSE" && echo "Verify existing ${f##*/}" |
"$VERBOSE" && echo "Verify existing ${f##*/}" |
| verify "$f" || continue |
verify "$f" || continue |
| |
"$INSTALL" || kept="$kept,$d" |
| # else assume it was verified when downloaded |
# else assume it was verified when downloaded |
| fi |
fi |
| elif "$DOWNLOAD"; then |
elif "$DOWNLOAD"; then |
| fetch "$f" || continue |
fetch "$f" || continue |
| verify "$f" || continue |
verify "$f" || continue |
| |
"$INSTALL" || added="$added,$d" |
| elif "$INSTALL"; then |
elif "$INSTALL"; then |
| echo "Cannot install ${f##*/}, not found" >&2 |
echo "Cannot install ${f##*/}, not found" >&2 |
| continue |
continue |
|
|
| added="${added:#,}" |
added="${added:#,}" |
| updated="${updated:#,}" |
updated="${updated:#,}" |
| kept="${kept:#,}" |
kept="${kept:#,}" |
| echo "${0##*/}: added ${added:-none}; updated ${updated:-none}; kept ${kept:-none}" |
if "$INSTALL"; then |
| |
echo "${0##*/}: added ${added:-none}; updated ${updated:-none}; kept ${kept:-none}" |
| |
else |
| |
echo "${0##*/}: downloaded ${added:-none}; kept ${kept:-none}" |
| |
fi |