Created
August 11, 2015 11:29
-
-
Save webkonstantin/7919e5f393dc6a773d87 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get install --no-install-recommends ca-certificates curl wget | |
apt-get install -y openjdk-7-jre-headless | |
gpg --keyserver pool.sks-keyservers.net --recv-keys \ | |
05AB33110949707C93A279E3D3EFE6B686867BA6 \ | |
07E48665A34DCAFAE522E5E6266191C37C037D42 \ | |
47309207D818FFD8DCD3F83F1931D684307A10A5 \ | |
541FBE7D8F78B25E055DDEE13C370389288584E7 \ | |
61B832AC2F1C5A90F0F9B00A1C506407564C17A3 \ | |
713DA88BE50911535FE716F5208B0AB1D63011C7 \ | |
79F7026C690BAA50B92CD8B66A3AD3F4F22C4FED \ | |
9BA44C2621385CB966EBA586F72C284D731FABEE \ | |
A27677289986DB50844682F8ACB77FC2E86E29AC \ | |
A9C5DF4D22E99998D9875A5110C01C5A2F6059E7 \ | |
DCFD35E0BF8CA7344752DE8B6FB21E8933C60243 \ | |
F3A04C595DB5B6A5F1ECA43E3B7BBB100D811BBE \ | |
F7DA48BB64BCB84ECBA7EE6935CD23C10D498E23 | |
CATALINA_HOME=/usr/local/tomcat | |
PATH=$CATALINA_HOME/bin:$PATH | |
mkdir -p "$CATALINA_HOME" | |
cd $CATALINA_HOME | |
TOMCAT_MAJOR=7 | |
TOMCAT_VERSION=7.0.63 | |
TOMCAT_TGZ_URL=https://www.apache.org/dist/tomcat/tomcat-$TOMCAT_MAJOR/v$TOMCAT_VERSION/bin/apache-tomcat-$TOMCAT_VERSION.tar.gz | |
set -x \ | |
&& curl -fSL "$TOMCAT_TGZ_URL" -o tomcat.tar.gz \ | |
&& curl -fSL "$TOMCAT_TGZ_URL.asc" -o tomcat.tar.gz.asc \ | |
&& gpg --verify tomcat.tar.gz.asc \ | |
&& tar -xvf tomcat.tar.gz --strip-components=1 \ | |
&& rm bin/*.bat \ | |
&& rm tomcat.tar.gz* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment