mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/python -u
 | 
						|
import os
 | 
						|
import sys
 | 
						|
import subprocess
 | 
						|
import logging
 | 
						|
import datetime
 | 
						|
import shutil
 | 
						|
import time
 | 
						|
 | 
						|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
 | 
						|
from zulip_tools import DEPLOYMENTS_DIR, LOCK_DIR, TIMESTAMP_FORMAT, FAIL, WARNING, ENDC
 | 
						|
 | 
						|
logging.basicConfig(format="%(asctime)s upgrade-zulip: %(message)s",
 | 
						|
                    level=logging.INFO)
 | 
						|
 | 
						|
if len(sys.argv) != 2:
 | 
						|
    print FAIL + "Usage: %s <tarball>" % (sys.argv[0],) + ENDC
 | 
						|
    sys.exit(1)
 | 
						|
 | 
						|
tarball_path = sys.argv[1]
 | 
						|
 | 
						|
start_time = time.time()
 | 
						|
got_lock = False
 | 
						|
while time.time() - start_time < 300:
 | 
						|
    try:
 | 
						|
        os.mkdir(LOCK_DIR)
 | 
						|
        got_lock = True
 | 
						|
        break
 | 
						|
    except OSError:
 | 
						|
        print WARNING + "Another deployment in progress; waiting for lock..." + ENDC
 | 
						|
        time.sleep(10)
 | 
						|
 | 
						|
if not got_lock:
 | 
						|
    print FAIL + "Deployment already in progress.  Please run\n" \
 | 
						|
               + "  %s/current/scripts/upgrade-zulip %s\n" % (DEPLOYMENTS_DIR, tarball_path) \
 | 
						|
               + "manually when the previous deployment finishes, or run\n" \
 | 
						|
               + "  rmdir %s\n"  % (LOCK_DIR,) \
 | 
						|
               + "if the previous deployment crashed." \
 | 
						|
               + ENDC
 | 
						|
    sys.exit(1)
 | 
						|
 | 
						|
timestamp = datetime.datetime.now().strftime(TIMESTAMP_FORMAT)
 | 
						|
deploy_path = os.path.join(DEPLOYMENTS_DIR, timestamp)
 | 
						|
 | 
						|
logging.info("Unpacking the tarball")
 | 
						|
deploy_path = subprocess.check_output([os.path.join(os.path.dirname(__file__), 'unpack-zulip'),
 | 
						|
                                       tarball_path])
 | 
						|
os.chdir(deploy_path.strip())
 | 
						|
 | 
						|
logging.info("Restarting server...")
 | 
						|
subprocess.check_output(["./scripts/restart-server"])
 | 
						|
 | 
						|
logging.info("Deployment complete")
 | 
						|
shutil.rmtree(LOCK_DIR)
 |