blob: 4a34da857209f888bf749fc9f89cda2c50deddf4 (
plain)
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
|
#!/bin/ksh
# Common functions that can be used throughout multiple scripts
# In order to call these functions, this file needs to be sourced
# Checks if the user that is currently running is aaiadmin
check_user(){
userid=$( id | cut -f2 -d"(" | cut -f1 -d")" )
if [ "${userid}" != "aaiadmin" ]; then
echo "You must be aaiadmin to run $0. The id used $userid."
exit 1
fi
}
# Sources the profile and sets the project home
source_profile(){
. /etc/profile.d/aai.sh
PROJECT_HOME=/opt/app/aai-resources
}
# Runs the spring boot jar based on which main class
# to execute and which logback file to use for that class
execute_spring_jar(){
className=$1;
logbackFile=$2;
shift 2;
EXECUTABLE_JAR=$(ls ${PROJECT_HOME}/lib/aai-resources-*SNAPSHOT.jar);
JAVA_OPTS="${JAVA_PRE_OPTS}";
JAVA_OPTS="-DAJSC_HOME=$PROJECT_HOME";
JAVA_OPTS="$JAVA_OPTS -DBUNDLECONFIG_DIR=resources";
JAVA_OPTS="$JAVA_OPTS -Daai.home=$PROJECT_HOME ";
JAVA_OPTS="$JAVA_OPTS -Dhttps.protocols=TLSv1.1,TLSv1.2";
JAVA_OPTS="$JAVA_OPTS -Dloader.main=${className}";
JAVA_OPTS="$JAVA_OPTS -Dlogback.configurationFile=${logbackFile}";
JAVA_OPTS="${JAVA_OPTS} ${JAVA_POST_OPTS}";
${JAVA_HOME}/bin/java ${JVM_OPTS} ${JAVA_OPTS} -jar ${EXECUTABLE_JAR} "$@"
}
# Prints the start date and the script that the user called
start_date(){
echo
echo `date` " Starting $0"
}
# Prints the end date and the script that the user called
end_date(){
echo
echo `date` " Done $0"
}
# Inserts GEN_DB_WITH_NO_SCHEMA as a paranmter if it isn't there already
force_GEN_DB_WITH_NO_SCHEMA () {
for p in "$@"
do
if [ "$p" == "GEN_DB_WITH_NO_SCHEMA" ]
then
echo "$@"
return
fi
done
echo "GEN_DB_WITH_NO_SCHEMA $@"
return
}
|