You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

To test the CloudMonkey releases, start with simple things like checking the signatures of the artifacts and installing cloudmonkey

#!/bin/bash

wget --no-check-certificate https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.0.0/apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2
wget --no-check-certificate https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.0.0/apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.asc
wget --no-check-certificate https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.0.0/apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.md5
wget --no-check-certificate https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.0.0/apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.sha

wget --no-check-certificate https://dist.apache.org/repos/dist/release/cloudstack/KEYS


gpg --verify apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.asc

gpg --print-md MD5 apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2 | diff - apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.md5
gpg --print-md SHA512 apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2 | diff - apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2.sha

tar xvfj apache-cloudstack-cloudmonkey-5.0.0-src.tar.bz2

cd apache-cloudstack-cloudmonkey-5.0.0-src

sudo python ./setup.py install

Then launch cloudmonkey and test the functionalities.

  • No labels