Versions Compared

Key

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

...

Code Block
mkdir /tmp/cloudstack; cd /tmp/cloudstack
wget http://people.apache.org/~chipchilders/dist/cloudstack/KEYS
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/4.0.0-incubating/apache-cloudstack-4.0.0-incubating-src.zip
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/4.0.0-incubating/apache-cloudstack-4.0.0-incubating-src.zip.asc
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/4.0.0-incubating/apache-cloudstack-4.0.0-incubating-src.zip.md5
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/4.0.0-incubating/apache-cloudstack-4.0.0-incubating-src.zip.sha
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/4.0.0-incubating/apache-cloudstack-4.0.0-incubating-src.tar.gztar.bz2
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/4.0.0-incubating/apache-cloudstack-4.0.0-incubating-src.tar.gzbz2.asc
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/4.0.0-incubating/apache-cloudstack-4.0.0-incubating-src.tar.gzbz2.md5
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/4.0.0-incubating/apache-cloudstack-4.0.0-incubating-src.tar.gzbz2.sha

Install gpg (if needed): sudo apt-get install gpg

...

Code Block
gpg --verify apache-cloudstack-4.0.0-incubating-src.tar.gzbz2.asc
gpg --verify apache-cloudstack-4.0.0-incubating-src.zip.asc

...

Code Block
gpg --print-md MD5 apache-cloudstack-4.0.0-incubating-src.tar.gzbz2 | diff - apache-cloudstack-4.0.0-incubating-src.tar.gzbz2.md5
gpg --print-md MD5 apache-cloudstack-4.0.0-incubating-src.zip | diff - apache-cloudstack-4.0.0-incubating-src.zip.md5
gpg --print-md SHA512 apache-cloudstack-4.0.0-incubating-src.tar.gzbz2 | diff - apache-cloudstack-4.0.0-incubating-src.tar.gzbz2.sha
gpg --print-md SHA512 apache-cloudstack-4.0.0-incubating-src.zip | diff - apache-cloudstack-4.0.0-incubating-src.zip.sha

...

Code Block
cd /tmp/cloudstack
tar xvfzxvfj apache-cloudstack-4.0.0-incubating-src.tar.gzbz2

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

...