This file contains hidden or 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
| #!/bin/bash | |
| # created by Leonardo Canessa | |
| # Modified from mtheoryx | |
| # lcanessa1@udayton.edu | |
| # simple script to clean tomcat prior to deploying sakai | |
| # $CATALINA_HOME assumed to be a symlink (/opt/tomcat) to an apache-tomcat-X.Y.Z folder | |
| tomcatVersion=`ls -l $CATALINA_HOME` | |
| tomcat8=false | |
| tomcat7=false |