82 lines
1.5 KiB
Bash
Executable file
82 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
# deploy
|
|
#
|
|
#{{IS_NOTE
|
|
# Purpose:
|
|
# Deploy
|
|
# Description:
|
|
# It supports tomcat only.
|
|
# History:
|
|
# Thu Jan 26 09:47:39 2006, Created by tomyeh
|
|
#}}IS_NOTE
|
|
#
|
|
#Copyright (C) 2006 Potix Corporation. All Rights Reserved.
|
|
#
|
|
#{{IS_RIGHT
|
|
# This program is distributed under Lesser GPL Version 2.1 in the hope that
|
|
# it will be useful, but WITHOUT ANY WARRANTY.
|
|
#}}IS_RIGHT
|
|
#
|
|
if [ ! -d /usr/tomcat ] ; then
|
|
echo "/usr/tomcat not found"
|
|
echo "Currently only tomcat is supported"
|
|
exit 1
|
|
fi
|
|
if [ $# == 0 ] ; then
|
|
echo "Usage:"
|
|
echo " deploy prj1 prj2..."
|
|
exit 0
|
|
fi
|
|
|
|
jar_found=false
|
|
for f in $*; do
|
|
f=${f%/}
|
|
if [ -f dist/lib/$f.war ] || [ "$(head -1 $f/format)" = "war" ] ; then
|
|
dst=$(grep '^root' $f/deploy)
|
|
if [ "$dst" = "root" ] ; then
|
|
dst=ROOT
|
|
else
|
|
dst=$f
|
|
fi
|
|
echo "cp dist/lib/$f /usr/tomcat/webapps/$dst"
|
|
|
|
function cpweb
|
|
{
|
|
(
|
|
cd $1
|
|
for sub in * ; do
|
|
if [ -f "$sub" ] ; then
|
|
#echo cp -u -p "$sub" $2
|
|
cp -u -p -v "$sub" $2
|
|
elif [ "$sub" != CVS ] && [ -d "$sub" ] ; then
|
|
local dstsub=$2/$sub
|
|
if [ ! -d "$dstsub" ] ; then
|
|
mkdir -p "$dstsub"
|
|
fi
|
|
#echo cpweb $(pwd)/$sub $dstsub
|
|
cpweb $sub $dstsub
|
|
fi
|
|
done
|
|
)
|
|
}
|
|
cpweb $f/src/archive /usr/tomcat/webapps/$dst
|
|
fi
|
|
|
|
if [ -f dist/lib/$f.jar ] ; then
|
|
jar_found=true
|
|
fi
|
|
done
|
|
|
|
if [ "$jar_found" = "true" ] ; then
|
|
net stop "Apache Tomcat"
|
|
|
|
for f in $*; do
|
|
f=${f%/}
|
|
if [ -f dist/lib/$f.jar ] ; then
|
|
#echo "cp dist/lib/$f.jar /usr/tomcat/shared/lib"
|
|
cp -p -u -v -f dist/lib/$f.jar /usr/tomcat/shared/lib
|
|
fi
|
|
done
|
|
|
|
net start "Apache Tomcat"
|
|
fi
|