-
Notifications
You must be signed in to change notification settings - Fork 8
/
nubomedia-paas.sh
executable file
·160 lines (136 loc) · 3.34 KB
/
nubomedia-paas.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#!/bin/bash
source ./gradle.properties
_version=${version}
_base="/opt/nubomedia/nubomedia-paas"
_nubomedia_config_file="/etc/nubomedia/paas.properties"
_process_name="nubomedia-paas"
_screen_name="nubomedia"
function checkBinary {
if command -v $1 >/dev/null 2>&1; then
return 0
else
echo >&2 "FAILED."
return 1
fi
}
_ex='sh -c'
if [ "$_user" != 'root' ]; then
if checkBinary sudo; then
_ex='sudo -E sh -c'
elif checkBinary su; then
_ex='su -c'
fi
fi
function check_already_running {
pgrep -f ${_process_name}-${_version}.jar
if [ "$?" -eq "0" ]; then
echo "${_process_name} is already running.."
exit;
fi
}
function init {
if [ ! -f $_nubomedia_config_file ]; then
if [ $EUID != 0 ]; then
echo "creating the directory and copying the file"
$_ex "mkdir /etc/nubomedia; cp ${_nubomedia_paas_base}/src/main/resources/application.properties ${_nubomedia_config_file}"
else
echo "creating the directory"
mkdir /etc/nubomedia
echo "copying the file"
cp ${_nubomedia_paas_base}/src/main/resources/paas.properties ${_nubomedia_config_file}
fi
else
echo "Properties file already exist"
fi
}
function start_checks {
check_already_running
if [ ! -d build/ ]
then
compile
fi
}
function start {
start_checks
screen_exists=$(screen -ls | grep ${_screen_name} | wc -l);
if [ "${screen_exists}" -eq 0 ]; then
screen -c screenrc -d -m -S ${_screen_name} -t ${_process_name} java -jar "$_base/build/libs/$_process_name-$_version.jar" -Xmx256m -Xms128m --spring.config.location=file:${_nubomedia_config_file}
else
screen -S $_screen_name -p 0 -X screen -t $_process_name java -jar "$_base/build/libs/$_process_name-$_version.jar" -Xmx256m -Xms128m --spring.config.location=file:${_nubomedia_config_file}
fi
}
function start_fg {
start_checks
java -jar "build/libs/${_process_name}-$_version.jar" -Xmx256m -Xms128m --spring.config.location=file:${_nubomedia_config_file}
}
function stop {
if screen -list | grep ${_screen_name}; then
screen -S ${_screen_name} -p 0 -X stuff "exit$(printf \\r)"
fi
}
function restart {
kill
start
}
function kill {
pkill -f ${_process_name}-${_version}.jar
}
function compile {
./gradlew build -x test
}
function tests {
./gradlew test
}
function clean {
./gradlew clean
}
function end {
exit
}
function usage {
echo -e "Open-Baton\n"
echo -e "Usage:\n\t ./openbaton.sh [compile|install_plugins|start|start_fg|stop|test|kill|clean]"
}
##
# MAIN
##
if [ $# -eq 0 ]
then
usage
exit 1
fi
declare -a cmds=($@)
for (( i = 0; i < ${#cmds[*]}; ++ i ))
do
case ${cmds[$i]} in
"clean" )
clean ;;
"install_plugins" )
install_plugins ;;
"sc" )
clean
compile
start ;;
"start" )
start ;;
"start_fg" )
start_fg ;;
"stop" )
stop ;;
"restart" )
restart ;;
"compile" )
compile ;;
"kill" )
kill ;;
"test" )
tests ;;
* )
usage
end ;;
esac
if [[ $? -ne 0 ]];
then
exit 1
fi
done