File tree 2 files changed +13
-0
lines changed
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
20
20
21
21
config . vm . provision :shell , :path => "install.sh"
22
22
config . vm . provision :shell , :path => "solr.sh"
23
+ config . vm . provision :shell , :path => "camel.sh"
23
24
24
25
# Disable automatic box update checking. If you disable this, then
25
26
# boxes will only be checked for updates when the user runs
Original file line number Diff line number Diff line change
1
+ echo " Installing Apache Camel"
2
+
3
+ CAMEL_VERSION=2.14.1
4
+ CAMEL_PATH=/usr/share/camel
5
+
6
+ mkdir $CAMEL_PATH
7
+ cd /tmp
8
+ wget http://mirror.csclub.uwaterloo.ca/apache/camel/apache-camel/" $CAMEL_VERSION " /apache-camel-" $CAMEL_VERSION " .tar.gz
9
+ tar -xzvf apache-camel-" $CAMEL_VERSION " .tar.gz
10
+ cd apache-camel-" $CAMEL_VERSION "
11
+ mv -v * $CAMEL_PATH
12
+ chown -hR tomcat7:tomcat7 $CAMEL_PATH
You can’t perform that action at this time.
0 commit comments