This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoverlay_war.sh
executable file
·81 lines (65 loc) · 1.62 KB
/
overlay_war.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
usage()
{
cat << EOF
usage: $0 options
This script takes a directory with the target data to overlay the war file.
OPTIONS:
-t target WAR file (optional, will use /target/bdrs-core.war by default) Absolute or relative path
-s source directory. This should be the the base directory of the data to overlay the WAR file with. Absolute or relative path
Example:
$0 -s ~/workspace/GR205-DIDMS/deployment/external_stage/war_file/
$0 -t target/bdrs-core.war -s ~/workspace/GR205-DIDMS/deployment/external_stage/war_file/
EOF
}
TARGET="target/bdrs-core.war"
SOURCE=
while getopts “ht::s:” OPTION
do
case $OPTION in
h)
usage
exit 1
;;
t)
TARGET=$OPTARG
;;
s)
SOURCE=$OPTARG
;;
esac
done
if [[ -z $TARGET ]] || [[ -z $SOURCE ]]
then
usage
exit 1
fi
if [[ ! $TARGET == \/* ]]
then
# Convert to absolute path
TARGET=$PWD"/"$TARGET
fi
if [[ ! -f $TARGET ]]
then
echo "Target WAR file" \"$TARGET\" "does not exist or is not a file"
exit 1
fi
if [[ ! -d $SOURCE ]]
then
echo "Source directory" \"$SOURCE\" "does not exist"
exit 1
fi
if [[ ! -d $SOURCE"/WEB-INF" ]]
then
echo "Expected to find the WEB-INF directory in the source dir. Are you sure this is the right directory?"
read -p "Do you want to continue (y/n)?: " CHOICE
if [ "$CHOICE" = "n" ]
then
echo "WAR file has not been overlayed"
exit 0
fi
fi
pushd $SOURCE
zip -r $TARGET . -x \*/.* -x \*.svn*
popd
echo "WAR file" \"$TARGET\" "successfully overlayed with data from" \"$SOURCE\"