diff options
Diffstat (limited to 'deliveries/start-apache-tomcat.sh')
-rw-r--r-- | deliveries/start-apache-tomcat.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/deliveries/start-apache-tomcat.sh b/deliveries/start-apache-tomcat.sh index 522eaf2a..98dde8b9 100644 --- a/deliveries/start-apache-tomcat.sh +++ b/deliveries/start-apache-tomcat.sh @@ -5,6 +5,7 @@ hostip="" hostname="" +BASE=/opt/apache-tomcat-8.0.37 while [ $# -gt 0 ]; do key="$1" case $key in @@ -20,6 +21,12 @@ while [ $# -gt 0 ]; do shift # past argument shift # past value ;; + -b|--base) + BASE="$2" + echo "$0: option -b value is $BASE" + shift # past argument + shift # past value + ;; *) echo "$0: ignoring argument $key" shift @@ -43,7 +50,6 @@ else fi fi -BASE=/opt/apache-tomcat-8.0.37 if [ ! -d $BASE ] ; then echo "$0: $BASE not found or not a directory" exit 1 |