12345678910111213141516171819202122 |
- import subprocess
- import sys
- import setup_util
- def start(args):
- setup_util.replace_text("servlet/src/main/webapp/WEB-INF/resin-web.xml", "localhost", args.database_host)
- try:
- subprocess.check_call("mvn clean compile war:war", shell=True, cwd="servlet")
- subprocess.check_call("rm -rf $RESIN_HOME/webapps/*", shell=True)
- subprocess.check_call("cp servlet/target/servlet.war $RESIN_HOME/webapps/", shell=True)
- subprocess.check_call("$RESIN_HOME/bin/resinctl start", shell=True)
- return 0
- except subprocess.CalledProcessError:
- return 1
- def stop():
- try:
- subprocess.check_call("$RESIN_HOME/bin/resinctl shutdown", shell=True)
- return 0
- except subprocess.CalledProcessError:
- return 1
|