Skip to content

Instantly share code, notes, and snippets.

@imesh
Last active December 28, 2015 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imesh/75f328d6667ffacc28df to your computer and use it in GitHub Desktop.
Save imesh/75f328d6667ffacc28df to your computer and use it in GitHub Desktop.
Download WSO2 Private PaaS RC
#!/bin/bash
set -e
version="4.1.1"
rc="rc2"
url="https://svn.wso2.org/repos/wso2/scratch/PPAAS/wso2ppaas-${version}-${rc}/"
function download() {
file=$1
wget -N $url/$file
wget -N $url/$file.asc
wget -N $url/$file.md5
wget -N $url/$file.sha1
}
download "apache-stratos-python-cartridge-agent-${version}.wso2v1.zip"
download "wso2ppaas-installer-${version}.zip"
download "wso2ppaas-membership-scheme-${version}.zip"
download "wso2ppaas-${version}.zip"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment