This commit is contained in:
2023-04-16 21:38:32 +08:00
parent a0849e40ef
commit 0b6c876a0f
59 changed files with 1026 additions and 189 deletions

View File

@@ -36,16 +36,17 @@ function Quit {
function RestoreConf {
if [ -z "$(ls conf/)" ]; then
Print Restore default config files and quit ...
Print Restoring default config files and quit ...
tar zxf conf.tgz
exit
fi
}
function StartProc {
Print Start tomcat ...
Print Starting tomcat ...
./bin/catalina.sh run &>> $CATALINA_OUT &
PIDS="$PIDS $!"
Print Tomcat started.
}
function Main {