Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2021-03-07 11:23:58 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2021-03-07 11:23:58 +0300
commit7fee25efd580fe562e527174c3b43dcb7e4bf30c (patch)
treebdf7b2c7862b3479cd0cc7c7ac80d6e69758cb65 /build-installers.sh
parentf0043ae6b235e8c19874650d77a8d5a814cd17ef (diff)
Changed to new timestamp servers for certificates (once again)
Diffstat (limited to 'build-installers.sh')
-rwxr-xr-xbuild-installers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-installers.sh b/build-installers.sh
index 8ec188adc..d5e4c8756 100755
--- a/build-installers.sh
+++ b/build-installers.sh
@@ -202,7 +202,7 @@ if [ -f "${AUTHENTICODE_PFXFILE}" ] && [ -f "${AUTHENTICODE_PASSWORD}" ]; then
authenticode_sign() {
NEST=""
for hashalg in sha1 sha256; do
- SIGN_MSG=$(osslsigncode sign -pkcs12 "${AUTHENTICODE_PFXFILE}" -pass "${PFX_PASS}" -n "Duplicati" -i "http://www.duplicati.com" -h "${hashalg}" ${NEST} -t "http://timestamp.globalsign.com/scripts/timestamp.dll" -in "$1" -out tmpfile)
+ SIGN_MSG=$(osslsigncode sign -pkcs12 "${AUTHENTICODE_PFXFILE}" -pass "${PFX_PASS}" -n "Duplicati" -i "http://www.duplicati.com" -h "${hashalg}" ${NEST} -t "http://timestamp.digicert.com?alg=${hashalg}" -in "$1" -out tmpfile)
if [ "${SIGN_MSG}" != "Succeeded" ]; then echo "${SIGN_MSG}"; fi
mv tmpfile "$1"
NEST="-nest"