Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
gpg --verify apache-cloudstack-4cloudmonkey-5.31.0-src.tar.bz2.asc

This command should return "Good Signature".

Code Block
gpg --print-md MD5 apache-cloudstack-cloudmonkey-45.31.0-src.tar.bz2 | diff - apache-cloudstack-4cloudmonkey-5.31.0-src.tar.bz2.md5
gpg --print-md SHA512 apache-cloudstack-4cloudmonkey-5.31.0-src.tar.bz2 | diff - apache-cloudstack-cloudmonkey-45.31.0-src.tar.bz2.sha

Each of these commands should return no output. If there is any output from them, then there is a difference between the hash you generated locally and the hash that has been pulled from the server.

...

Code Block
cd /tmp/cloudstack-cloudmonkey
tar xvfj apache-cloudstack-cloudmonkey-45.31.0-src.tar.bz2

Compare the contents of the release artifact with the contents pulled from the repo:

Code Block
diff -r /tmp/cloudstack/apache-cloudstack-cloudmonkey-45.31.0-src /tmp/cloudstack-cloudmonkey/tree

Nothing should be different.

...