summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_build.sh18
-rwxr-xr-xupdate_jdn.sh23
2 files changed, 23 insertions, 18 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index d4d2e584..a3772800 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -774,24 +774,6 @@ check_buildinfo() {
}
sign_buildinfo() {
- # Greate GPG key if it does not already exist
- if ! gpg --with-colons --fixed-list-mode --list-secret-keys | cut -d: -f1 | grep -qsFx 'sec' >/dev/null 2>&1
- then
- log_info "Generating GPG key"
-
- gpg --no-tty --batch --gen-key <<EOF
-Key-Type: RSA
-Key-Length: 4096
-Key-Usage: sign
-Name-Real: $(hostname -f)
-Name-Comment: Automatically generated key for signing .buildinfo files
-Expire-Date: 0
-%no-ask-passphrase
-%no-protection
-%commit
-EOF
- fi
-
log_info "Signing $BUILDINFO as $BUILDINFO_SIGNED"
gpg --output=$BUILDINFO_SIGNED --clearsign $BUILDINFO
log_info "Signed $BUILDINFO as $BUILDINFO_SIGNED"
diff --git a/update_jdn.sh b/update_jdn.sh
index 20ba0611..0eb22491 100755
--- a/update_jdn.sh
+++ b/update_jdn.sh
@@ -678,6 +678,29 @@ if [ "$HOSTNAME" = "jenkins" ] || [ "$HOSTNAME" = "jenkins-test-vm" ] ; then
rm -f $TMPFILE
fi
+# Greate GPG key on nodes if they do not already exist in order to sign .buildinfo files
+if [ "$HOSTNAME" != "jenkins" ] || [ "$HOSTNAME" = "jenkins-test-vm" ] ; then
+
+ if gpg --with-colons --fixed-list-mode --list-secret-keys | cut -d: -f1 | grep -qsFx 'sec' >/dev/null 2>&1
+ then
+ explain "$(date) Not generating GPG key as one already exists"
+ else
+ explain "$(date) Generating GPG key"
+
+ gpg --no-tty --batch --gen-key <<EOF
+Key-Type: RSA
+Key-Length: 4096
+Key-Usage: sign
+Name-Real: $(hostname -a)
+Name-Comment: Automatically generated key for signing .buildinfo files
+Expire-Date: 0
+%no-ask-passphrase
+%no-protection
+%commit
+EOF
+ fi
+fi
+
#
# almost finally…
#