12345678910111213141516 |
- import helper
- from helper import Command
- import os
- def start(args, logfile, errfile):
- helper.set_database_host(args)
- commands = [
- Command("sudo /usr/local/nginx/sbin/nginx -c $TROOT/config/nginx.conf", True),
- Command("rvm ruby-2.0.0-p0 do bundle exec unicorn -E production -c config/unicorn.rb", False)
- ]
- return helper.run(commands, logfile, errfile, args.troot)
- def stop(logfile, errfile):
- helper.run([Command("sudo /usr/local/nginx/sbin/nginx -s stop -c $TROOT/config/nginx.conf", True)], logfile, errfile, os.environ['TROOT'])
- return helper.stop('unicorn', logfile, errfile)
|