You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2021/08/19 13:26:29 UTC

[activemq-website] branch main updated: Update gpg verify command and add quick note about sha512sum to verify hash

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 77676c8  Update gpg verify command and add quick note about sha512sum to verify hash
77676c8 is described below

commit 77676c83e344037ef3c07d7033f66bc3b8106895
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Thu Aug 19 15:26:07 2021 +0200

    Update gpg verify command and add quick note about sha512sum to verify
    hash
---
 src/_layouts/5x_release.md | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/src/_layouts/5x_release.md b/src/_layouts/5x_release.md
index 7b6d597..3241bc2 100644
--- a/src/_layouts/5x_release.md
+++ b/src/_layouts/5x_release.md
@@ -54,11 +54,20 @@ It is essential that you verify the integrity of the downloaded files using the
     or
     ```
     $ gpg --import KEYS
-    $ gpg --verify apache-activemq-<version>-bin.tar.gz.asc
+    $ gpg --verify apache-activemq-<version>-bin.tar.gz.asc apache-activemq-<version>-bin.tar.gz
     ```
 
 (Where <version> is replaced with the actual version, e.g., 5.1.0, 5.2.0, etc.).
 
+You can also verify SHA512 hash using `sha512sum` command:
+
+```
+$ sha512sum -c apache-activemq-<version>-bin.tar.gz.sha512
+apache-activemq-<version>-bin.tar.gz: OK
+```
+
+(Where <version> is replaced with the actual version, e.g., 5.1.0, 5.2.0, etc.).
+
 Getting the Binaries using Maven 3
 ----------------------------------