diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-07-26 03:52:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-07-26 03:53:16 +0000 |
commit | c99e2c996949d9b17af8a871bffe3796da247924 (patch) | |
tree | cf4ab3b6735ddf84aef85a30fd51144d31264499 /share/get-scripts | |
parent | Support fetching local keys from keyring library in container key command. (diff) | |
download | compute-tools-c99e2c996949d9b17af8a871bffe3796da247924.tar.xz compute-tools-c99e2c996949d9b17af8a871bffe3796da247924.zip |
Using sig instead of sign as gpg signature extension for container images.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | share/get-scripts/curl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/get-scripts/curl b/share/get-scripts/curl index 435e8e9..4accea2 100755 --- a/share/get-scripts/curl +++ b/share/get-scripts/curl @@ -298,14 +298,14 @@ mkdir -p "${CACHE}" SETUP="${SETUP:-$(echo ${SYSTEM} | sed -e 's|.system.tar.|.setup.tar.|')}" -for FILE in "${SYSTEM}" "${SYSTEM}.sign" "${SYSTEM}.sha512" \ - "${SETUP}" "${SETUP}.sign" "${SETUP}.sha512" +for FILE in "${SYSTEM}" "${SYSTEM}.sig" "${SYSTEM}.sha512" \ + "${SETUP}" "${SETUP}.sig" "${SETUP}.sha512" do if curl --fail --head --output /dev/null --silent "${SERVER}/${FILE}" then case "${FILE}" in *.sha512) - if [ -e "${CACHE}/$(basename ${FILE} .sha512).sign" ] + if [ -e "${CACHE}/$(basename ${FILE} .sha512).sig" ] then continue fi @@ -334,12 +334,12 @@ do continue fi - if [ -e "${FILE}.sign" ] + if [ -e "${FILE}.sig" ] then echo -n "Verifying ${FILE}:" set +e - gpg --homedir "${KEYS}" --verify "${FILE}.sign" "${FILE}" > /dev/null 2>&1 + gpg --homedir "${KEYS}" --verify "${FILE}.sig" "${FILE}" > /dev/null 2>&1 GNUPG="${?}" set -e |