|
@@ -5,13 +5,12 @@ import os
|
|
|
import setup_util
|
|
|
from os.path import expanduser
|
|
|
|
|
|
-home = expanduser("~")
|
|
|
-
|
|
|
def start(args, logfile, errfile):
|
|
|
+ fwroot = args.fwroot
|
|
|
setup_util.replace_text("cake/app/Config/database.php", "'host' => '.*',", "'host' => '" + args.database_host + "',")
|
|
|
- setup_util.replace_text("cake/deploy/cake", "\".*\/FrameworkBenchmarks", "\"" + home + "/FrameworkBenchmarks")
|
|
|
- setup_util.replace_text("cake/deploy/cake", "Directory .*\/FrameworkBenchmarks", "Directory " + home + "/FrameworkBenchmarks")
|
|
|
- setup_util.replace_text("cake/deploy/nginx.conf", "root .*\/FrameworkBenchmarks", "root " + home + "/FrameworkBenchmarks")
|
|
|
+ setup_util.replace_text("cake/deploy/cake", "\".*\/FrameworkBenchmarks", "\"%s" % fwroot)
|
|
|
+ setup_util.replace_text("cake/deploy/cake", "Directory .*\/FrameworkBenchmarks", "Directory %s" % fwroot)
|
|
|
+ setup_util.replace_text("cake/deploy/nginx.conf", "root .*\/FrameworkBenchmarks", "root %s" % fwroot)
|
|
|
|
|
|
try:
|
|
|
if os.name == 'nt':
|
|
@@ -23,8 +22,8 @@ def start(args, logfile, errfile):
|
|
|
#subprocess.check_call("sudo a2ensite cake", shell=True)
|
|
|
subprocess.check_call("sudo chown -R www-data:www-data cake", shell=True, stderr=errfile, stdout=logfile)
|
|
|
#subprocess.check_call("sudo /etc/init.d/apache2 start", shell=True)
|
|
|
- subprocess.check_call("sudo php-fpm --fpm-config config/php-fpm.conf -g " + home + "/FrameworkBenchmarks/cake/deploy/php-fpm.pid", shell=True, stderr=errfile, stdout=logfile)
|
|
|
- subprocess.check_call("sudo /usr/local/nginx/sbin/nginx -c " + home + "/FrameworkBenchmarks/cake/deploy/nginx.conf", shell=True, stderr=errfile, stdout=logfile)
|
|
|
+ subprocess.check_call("sudo php-fpm --fpm-config config/php-fpm.conf -g $TROOT/deploy/php-fpm.pid", shell=True, stderr=errfile, stdout=logfile)
|
|
|
+ subprocess.check_call("sudo /usr/local/nginx/sbin/nginx -c $TROOT/deploy/nginx.conf", shell=True, stderr=errfile, stdout=logfile)
|
|
|
return 0
|
|
|
except subprocess.CalledProcessError:
|
|
|
return 1
|
|
@@ -34,7 +33,7 @@ def stop(logfile, errfile):
|
|
|
subprocess.call('appcmd delete site PHP', shell=True, stderr=errfile, stdout=logfile)
|
|
|
return 0
|
|
|
subprocess.call("sudo /usr/local/nginx/sbin/nginx -s stop", shell=True, stderr=errfile, stdout=logfile)
|
|
|
- subprocess.call("sudo kill -QUIT $( cat cake/deploy/php-fpm.pid )", shell=True, stderr=errfile, stdout=logfile)
|
|
|
+ subprocess.call("sudo kill -QUIT $( cat $TROOT/deploy/php-fpm.pid )", shell=True, stderr=errfile, stdout=logfile)
|
|
|
#subprocess.check_call("sudo a2dissite cake", shell=True)
|
|
|
#subprocess.check_call("sudo /etc/init.d/apache2 stop", shell=True)
|
|
|
subprocess.check_call("sudo chown -R $USER:$USER cake", shell=True, stderr=errfile, stdout=logfile)
|