Repository: bigtop Updated Branches: refs/heads/master 4cee56bdc -> 33128d098
BIGTOP-2892. The download page should provide instructions to check hashes and signatures Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/33128d09 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/33128d09 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/33128d09 Branch: refs/heads/master Commit: 33128d0987d109290c3360b0a2f5867a344df886 Parents: 4cee56b Author: Evans Ye <[email protected]> Authored: Tue Dec 11 17:16:56 2018 +0800 Committer: Evans Ye <[email protected]> Committed: Thu Dec 13 17:36:07 2018 +0800 ---------------------------------------------------------------------- src/site/xdoc/download.xml | 44 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/33128d09/src/site/xdoc/download.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/download.xml b/src/site/xdoc/download.xml index 4ac48ef..dbbbe64 100644 --- a/src/site/xdoc/download.xml +++ b/src/site/xdoc/download.xml @@ -62,6 +62,50 @@ <a href="https://www.apache.org/dyn/closer.cgi/bigtop/bigtop-1.0.0/bigtop-1.0.0-project.tar.gz">Bigtop 1.0.0</a>(<a href="https://archive.apache.org/dist/bigtop/bigtop-1.0.0/bigtop-1.0.0-project.tar.gz.asc">pgp</a> <a href="https://archive.apache.org/dist/bigtop/bigtop-1.0.0/bigtop-1.0.0-project.tar.gz.md5">md5</a> <a href="https://archive.apache.org/dist/bigtop/bigtop-1.0.0/bigtop-1.0.0-project.tar.gz.sha1">sha1</a>) </li> </ul> + <subsection name="To verify Bigtop releases using GPG:" id="gpg"></subsection> + <ol> + <li> + Download the release bigtop-X.Y.Z-project.tar.gz from links above.<br/> + </li> + <li> + Download the signature file pgp(bigtop-X.Y.Z-project.tar.gz.asc) from links above.<br/> + </li> + <li> + Download the <a href="https://dist.apache.org/repos/dist/release/bigtop/KEYS">Bigtop KEYS</a> file.<br/> + </li> + <li> + $ gpg --import KEYS<br/> + </li> + <li> + $ gpg --verify bigtop-X.Y.Z-src.tar.gz.asc<br/> + </li> + </ol> + <subsection name="To verify Bigtop releases using SHA-256 or SHA-512:" id="checksum"></subsection> + <ol> + <li> + Download the release bigtop-X.Y.Z-project.tar.gz from links above.<br/> + </li> + <li> + Download the checksum file sha256/512 from links above.<br/> + </li> + <li> + $ shasum -a 256 bigtop-X.Y.Z-src.tar.gz<br/> + $ shasum -a 512 bigtop-X.Y.Z-src.tar.gz<br/> + </li> + </ol> + <subsection name="To verify Bigtop releases using SHA-1 or MD5(previous releases only):" id="checksum_prev"></subsection> + <ol> + <li> + Download the release bigtop-X.Y.Z-project.tar.gz from links above.<br/> + </li> + <li> + Download the checksum file sha1 or md5 from links above.<br/> + </li> + <li> + $ shasum bigtop-X.Y.Z-src.tar.gz<br/> + $ md5 bigtop-X.Y.Z-src.tar.gz<br/> + </li> + </ol> </section> </body> </document>
