2013-02-19 01:00:54 +01:00
|
|
|
#!/usr/bin/env python
|
2013-01-31 16:49:09 +01:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import subprocess
|
|
|
|
import pylibmc
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
# Color codes
|
|
|
|
OKBLUE = '\033[94m'
|
|
|
|
OKGREEN = '\033[92m'
|
|
|
|
WARNING = '\033[93m'
|
|
|
|
FAIL = '\033[91m'
|
|
|
|
ENDC = '\033[0m'
|
|
|
|
|
|
|
|
os.chdir("/home/humbug/humbug")
|
|
|
|
|
|
|
|
#subprocess.check_call(["python", "manage.py", "syncdb"], stdout=open('/dev/null', 'w'))
|
|
|
|
|
|
|
|
# Delete all .pyc files to avoid old module files hanging around
|
|
|
|
subprocess.check_call(["find", ".", "-name", "*.pyc", "-delete"], stdout=open('/dev/null', 'w'))
|
|
|
|
|
2013-01-30 23:11:34 +01:00
|
|
|
# Update static files
|
|
|
|
subprocess.check_call(["./tools/update-prod-static"])
|
|
|
|
|
2013-01-31 16:49:09 +01:00
|
|
|
# Restart the FastCGI process, which is running in a shell loop in screen.
|
|
|
|
# TODO: real daemonization
|
2013-01-31 16:53:50 +01:00
|
|
|
for cmd in ('runfcgi', 'runtornado', "process_user_activity"):
|
2013-01-31 16:49:09 +01:00
|
|
|
try:
|
|
|
|
subprocess.check_call(["pkill", "-f", "python manage.py " + cmd])
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
print "%sCould not kill %s; is it running?%s" % (WARNING, cmd, ENDC)
|
|
|
|
|
2013-03-04 16:54:21 +01:00
|
|
|
try:
|
|
|
|
if not pylibmc.Client(['127.0.0.1']).flush_all():
|
|
|
|
print "%sflush_all returned False%s" % (WARNING, ENDC)
|
|
|
|
# There doesn't seem to be a method to close a pylibmc Client object.
|
|
|
|
except:
|
|
|
|
print "%sCould not flush cache:%s" % (WARNING, ENDC)
|
|
|
|
traceback.print_exc()
|
|
|
|
|
2013-03-13 19:11:35 +01:00
|
|
|
subprocess.check_call(["python", os.path.join(os.path.dirname(__file__), "..", "manage.py"),
|
|
|
|
"fill_memcached_caches"])
|
|
|
|
|
2013-01-31 16:49:09 +01:00
|
|
|
print OKGREEN + "Application restarted successfully!" + ENDC
|