|
@@ -1,34 +0,0 @@
|
|
-
|
|
|
|
-import subprocess
|
|
|
|
-import sys
|
|
|
|
-import os
|
|
|
|
-import setup_util
|
|
|
|
-
|
|
|
|
-def start(args, logfile, errfile):
|
|
|
|
- setup_util.replace_text("servlet3-cass/src/main/resources/application.properties", "localhost", args.database_host)
|
|
|
|
-
|
|
|
|
- try:
|
|
|
|
- subprocess.check_call("mvn clean compile war:war", shell=True, cwd="servlet3-cass", stderr=errfile, stdout=logfile)
|
|
|
|
- if os.name == 'nt':
|
|
|
|
- subprocess.check_call("rmdir /s /q C:\\Java\\resin\\webapps", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- subprocess.check_call("mkdir C:\\Java\\resin\\webapps", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- subprocess.check_call("cp servlet3-cass\\target\\servlet3-cass.war C:\\Java\\resin\\webapps\\servlet3-cass.war", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- subprocess.check_call("C:\\Java\\resin\\bin\\start.bat", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- return 0
|
|
|
|
- subprocess.check_call("rm -rf $RESIN_HOME/webapps/*", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- subprocess.check_call("cp servlet3-cass/target/servlet3-cass.war $RESIN_HOME/webapps/", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
-# subprocess.call("echo checking connection to TFB DB host: "+args.database_host, shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
-# subprocess.call("for i in 1 2 3 4 5; do nc -vz "+args.database_host+" 9160 && echo 'C* ok' && break || echo 'waiting for C*'; sleep 2; if [ $i -eq '5' ]; then echo 'ERROR: failed to connect to Cassandra'; fi; done", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- subprocess.check_call("$RESIN_HOME/bin/resinctl start", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- return 0
|
|
|
|
- except subprocess.CalledProcessError:
|
|
|
|
- return 1
|
|
|
|
-def stop(logfile, errfile):
|
|
|
|
- try:
|
|
|
|
- if os.name == 'nt':
|
|
|
|
- subprocess.check_call("C:\\Java\\resin\\bin\\stop.bat", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- return 0
|
|
|
|
- subprocess.check_call("$RESIN_HOME/bin/resinctl shutdown", shell=True, stderr=errfile, stdout=logfile)
|
|
|
|
- return 0
|
|
|
|
- except subprocess.CalledProcessError:
|
|
|
|
- return 1
|
|
|