0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/custom/totvs.zsh
2012-11-21 16:35:31 -02:00

94 lines
1.8 KiB
Bash

#
# Just some utilities for use in ecm development.
#
setopt rmstarsilent
HOME="/home/carlos"
ECM_WS="$HOME/totvs/ws"
ECM_JBOSS="$HOME/Public/ecm/JBoss-7.1.1"
ECM_PORT="8080"
VOLDEMORT=$ECM_WS/voldemort
ECM=$ECM_WS/ecm
INSTALLER="n"
# fuckin aliases
alias ecmu=ecmup
alias ecmb=ecmbuild
alias ecmc=ecmclean
alias ecms=ecmstart
alias ecmo=ecmstop
alias ecmi=ecminstall
alias ecm=ecmfull
# update ecm
ecmup() {
echo "update all the things!"
cd $VOLDEMORT && svn up
cd $ECM && svn up
}
# build it!
ecmbuild() {
echo "build? no problem sir..."
case $@ in
-*i*)
INSTALLER=y
;;
esac
cd $VOLDEMORT && mvncie
cd $VOLDEMORT/social-ecm
cd $VOLDEMORT/wcm && mvncie
cd $ECM/ecm/wecmpackage && mvncie
cd $VOLDEMORT/ecm && mvncie
ecminstall
}
# gen installer or cp wars...
ecminstall() {
if [[ "$INSTALLER" == "y" ]]; then
echo "generating installer..."
cd $VOLDEMORT/ecm/installer
mvnci -am -Drun=installer -DLinux64=true -DappServer=jboss
else
echo "cpying wars..."
cd $VOLDEMORT/ecm/build && mvnci
cd $VOLDEMORT/wcm/build && mvnci
cd $VOLDEMORT/social-ecm/build && mvnci
fi
}
# clean jboss trash folders
ecmclean() {
echo "cleaning jboss shit"
rm -rf $ECM_JBOSS/standalone/{deployments/*,log,tmp} 2> /dev/null
}
# start jboss server
ecmstart() {
# why shall I start server if i just gen a installer?
if [[ "$INSTALLER" == "n" ]]; then
echo "starting jboss"
cd $ECM_JBOSS/bin
JAVA_OPTS="-Xmx2048m -XX:MaxPermSize=512m -DzkRun -Dbootstrap_conf=true" ./standalone.sh
fi
}
# stop jboss (usually on 8080)
ecmstop() {
echo "kill jboss (or whatever you are running on 8080"
fuser -k $ECM_PORT/tcp
}
# do all the things
ecmfull() {
echo "serious business here. let's have a coffee.."
ecmstop
ecmclean
ecmup
ecmbuild && ecmstart
}