Versions Compared

Key

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

...

Download the source build

Note

Replace $version with the correct detailed version string in any commands below (sans the -incubating string, which I've included in the specific commands)

The following should be done perform performed on your computer, not the devCloud VM.

Download latest source code release from http://people.apache.org/~chipchilders/cloudstack/4.0/ on to your computer.  You can download either the .zip or .gz package.  You don't need both.the artifacts:

Code Block
mkdir -p ~/cloudstack; cd ~/cloudstack
wget http://people.apache.org/~chipchilders/dist/cloudstack/KEYS
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/$version4.0.0-incubating/apache-cloudstack-$version4.0.0-incubating-src.zip
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/$version4.0.0-incubating/apache-cloudstack-$version4.0.0-incubating-src.zip.asc
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/$version4.0.0-incubating/apache-cloudstack-$version4.0.0-incubating-src.zip.md5
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/$version4.0.0-incubating/apache-cloudstack-$version4.0.0-incubating-src.zip.sha
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/$version4.0.0-incubating/apache-cloudstack-$version4.0.0-incubating-src.tar.gz
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/$version4.0.0-incubating/apache-cloudstack-$version4.0.0-incubating-src.tar.gz.asc
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/$version4.0.0-incubating/apache-cloudstack-$version4.0.0-incubating-src.tar.gz.md5
wget http://people.apache.org/~chipchilders/dist/cloudstack/releases/$version4.0.0-incubating/apache-cloudstack-$version4.0.0-incubating-src.tar.gz.sha

...

Code Block
gpg --verify apache-cloudstack-$version4.0.0-incubating-src.tar.gz.asc
gpg --verify apache-cloudstack-$version4.0.0-incubating-src.zip.asc
gpg --print-md MD5 apache-cloudstack-$version4.0.0-incubating-src.tar.gz | diff - apache-cloudstack-$version4.0.0-incubating-src.tar.gz.md5
gpg --print-md MD5 apache-cloudstack-$version4.0.0-incubating-src.zip | diff - apache-cloudstack-$version4.0.0-incubating-src.zip.md5
gpg --print-md SHA512 apache-cloudstack-$version4.0.0-incubating-src.tar.gz | diff - apache-cloudstack-$version4.0.0-incubating-src.tar.gz.sha
gpg --print-md SHA512 apache-cloudstack-$version4.0.0-incubating-src.zip | diff - apache-cloudstack-$version4.0.0-incubating-src.zip.sha

Extract the source code and verify the contents:

Code Block
unzip apache-cloudstack-$version4.0.0-incubating-src.zip

OR

Code Block
tar xvfz apache-cloudstack-$version4.0.0-incubating-src.tar.gz

Verify the Code's License Headers

Code Block
cd apache-cloudstack-$version4.0.0-incubating-src
mvn --projects='org.apache.cloudstack:cloudstack' org.apache.rat:apache-rat-plugin:0.8:check

...