1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-05 15:57:23 +01:00

remove old Amazon EC2-related things since no one should ever deploy a mail server to EC2 (IPs have bad reputation)

This commit is contained in:
Joshua Tauberer
2014-03-17 01:11:07 +00:00
parent 511453adf7
commit 6d1d9e1cc9
4 changed files with 0 additions and 114 deletions

View File

@@ -1,26 +0,0 @@
import sys, json, re
# Arguments:
region, version, arch, instance_type = sys.argv[1:]
# Read bytes from stdin.
dat = sys.stdin.read()
# Be flexible. The Ubuntu AMI list is invalid JSON by having a comma
# following the last element in a list.
dat = re.sub(r",(\s*)\]", r"\1]", dat)
# Parse JSON.
dat = json.loads(dat)
for item in dat["aaData"]:
if item[0] == region and item[2] == version and item[3] == arch and item[4] == instance_type:
ami_link = item[6]
# The field comes in the form of <a href="...">ami-id</a>
ami_link = re.sub(r"<.*?>", "", ami_link)
print(ami_link)
break