summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorSam Kleinman <samk@10gen.com>2016-01-19 13:13:22 -0500
committerSam Kleinman <samk@10gen.com>2016-01-19 14:42:44 -0500
commit0a5f51a5983c12b3b21667f116995aff4c11c242 (patch)
tree6419b258f0d1c0ae8866669e6e4779a46f78ac6a /etc
parent38ce072a3169ba78f302ffcd37ee6f3ffc866e70 (diff)
downloadmongo-0a5f51a5983c12b3b21667f116995aff4c11c242.tar.gz
SERVER-22226: update signing key for 3.4
Diffstat (limited to 'etc')
-rw-r--r--etc/evergreen.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 92a870cfb47..7f60ff94b20 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -1753,7 +1753,7 @@ tasks:
silent: true
script: |
set -o errexit
- echo "${signing_auth_token_32}" > signing_auth_token
+ echo "${signing_auth_token_34}" > signing_auth_token
- command: shell.exec
params:
working_dir: src
@@ -1767,19 +1767,19 @@ tasks:
mv distsrc.${ext|tgz} mongodb-src-${src_suffix}.${ext|tar.gz} || true
/usr/bin/find build/ -type f | grep msi$ | xargs -I original_filename cp original_filename mongodb-win32-${push_arch}-${suffix}.msi || true
- notary-client.py --key-name "server-3.2" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --skip-missing mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz} mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz} mongodb-win32-${push_arch}-${suffix}.msi mongodb-src-${src_suffix}.${ext|tar.gz}
+ notary-client.py --key-name "server-3.4" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --skip-missing mongodb-${push_name}-${push_arch}-${suffix}.${ext|tgz} mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz} mongodb-win32-${push_arch}-${suffix}.msi mongodb-src-${src_suffix}.${ext|tar.gz}
if [ "${has_packages|}" = "true" ] ; then
for rpm in $(find repo/ -name \*.rpm) ; do
pushd $(dirname $rpm)
# Use --package-file-suffix "" to overwrite existing RPM's instead of saving new "-signed.rpm" RPM files
#
- notary-client.py --key-name "server-3.2" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --archive-file-ext gpg --outputs sig --package-file-suffix "" $(basename $rpm)
+ notary-client.py --key-name "server-3.4" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --archive-file-ext gpg --outputs sig --package-file-suffix "" $(basename $rpm)
popd
done
for release_file in $(find repo/ -name Release) ; do
pushd $(dirname $release_file)
- notary-client.py --key-name "server-3.2" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --outputs sig Release
+ notary-client.py --key-name "server-3.4" --auth-token-file ${workdir}/src/signing_auth_token --comment "Evergreen Automatic Signing ${revision} - ${build_variant} - ${branch_name}" --notary-url http://notary-service.build.10gen.cc:5000 --outputs sig Release
popd
done
fi