mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 04:23:46 +00:00
This causes `upgrade-zulip-from-git`, as well as a no-option run of `tools/build-release-tarball`, to produce a Zulip install running Python 3, rather than Python 2. In particular this means that the virtualenv we create, in which all application code runs, is Python 3. One shebang line, on `zulip-ec2-configure-interfaces`, explicitly keeps Python 2, and at least one external ops script, `wal-e`, also still runs on Python 2. See discussion on the respective previous commits that made those explicit. There may also be some other third-party scripts we use, outside of this source tree and running outside our virtualenv, that still run on Python 2.
41 lines
1.4 KiB
Python
Executable File
41 lines
1.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
import os
|
|
import logging
|
|
import datetime
|
|
import shutil
|
|
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|
from scripts.lib.zulip_tools import DEPLOYMENTS_DIR, TIMESTAMP_FORMAT
|
|
|
|
logging.basicConfig(format="%(asctime)s purge-deployments: %(message)s",
|
|
level=logging.INFO)
|
|
|
|
deployments_in_use = set()
|
|
for basename in ['current', 'last', 'next']:
|
|
# Note which symlinks are current
|
|
path = os.path.abspath(os.readlink(os.path.join(DEPLOYMENTS_DIR, basename)))
|
|
deployments_in_use.add(path)
|
|
|
|
one_week_ago = datetime.datetime.now() - datetime.timedelta(days=7)
|
|
to_purge = []
|
|
for filename in os.listdir(DEPLOYMENTS_DIR):
|
|
try:
|
|
date = datetime.datetime.strptime(filename, TIMESTAMP_FORMAT)
|
|
if date < one_week_ago:
|
|
if os.path.abspath(os.path.join(DEPLOYMENTS_DIR, filename)) in deployments_in_use:
|
|
# Never purge an in-use deployment
|
|
continue
|
|
to_purge.append(filename)
|
|
except ValueError:
|
|
pass
|
|
|
|
if to_purge:
|
|
to_purge.sort()
|
|
logging.info("Purging the following old deployments directories: %s" % (", ".join(to_purge),))
|
|
for filename in to_purge:
|
|
shutil.rmtree(os.path.join(DEPLOYMENTS_DIR, filename))
|
|
logging.info("Finished %s" % (filename))
|
|
else:
|
|
logging.info("No old deployment directories to purge")
|