Skip to content

Commit

Permalink
Add Apache Camel. Closes #4
Browse files Browse the repository at this point in the history
  • Loading branch information
ruebot committed Feb 18, 2015
1 parent ace4d52 commit a9d1044
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions install/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

config.vm.provision :shell, :path => "install.sh"
config.vm.provision :shell, :path => "solr.sh"
config.vm.provision :shell, :path => "camel.sh"

# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
Expand Down
12 changes: 12 additions & 0 deletions install/camel.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
echo "Installing Apache Camel"

CAMEL_VERSION=2.14.1
CAMEL_PATH=/usr/share/camel

mkdir $CAMEL_PATH
cd /tmp
wget http://mirror.csclub.uwaterloo.ca/apache/camel/apache-camel/"$CAMEL_VERSION"/apache-camel-"$CAMEL_VERSION".tar.gz
tar -xzvf apache-camel-"$CAMEL_VERSION".tar.gz
cd apache-camel-"$CAMEL_VERSION"
mv -v * $CAMEL_PATH
chown -hR tomcat7:tomcat7 $CAMEL_PATH

0 comments on commit a9d1044

Please sign in to comment.