18 lines
338 B
Bash
Executable file
18 lines
338 B
Bash
Executable file
#!/bin/bash
|
|
echo "JBOSS_HOME=$JBOSS_HOME"
|
|
|
|
if [ ! -d "$JBOSS_HOME/bin" ] ; then
|
|
>&2 echo "JBOSS_HOME/bin doesn't exist"
|
|
exit 1
|
|
fi
|
|
|
|
cd $JBOSS_HOME/bin
|
|
|
|
RESULT=0
|
|
patches=$(echo $APP_PATCH_ZIPS | tr "," "\n")
|
|
for patch in $patches
|
|
do
|
|
./jboss-cli.sh --command="patch apply $patch"
|
|
if [ $? -ne 0 ]; then exit 1; fi
|
|
done
|
|
exit 0
|