summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMark Doffman <mark.doffman@codethink.co.uk>2014-07-21 15:52:47 +0000
committerMark Doffman <mark.doffman@codethink.co.uk>2014-08-04 21:08:50 +0000
commit5a82d3551c6655220d4c5d4809118db5b8eba9c0 (patch)
treecf763d2f069d3306117deb46c22b5d1440adcf45 /scripts
parentf96f5e5d0db538f084cf91bc129b4cc59f066558 (diff)
downloadlorries-5a82d3551c6655220d4c5d4809118db5b8eba9c0.tar.gz
Regenerate OpenStack lorry.
Regenerate openstack.lorry to include repositories needed for DNS services.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate-openstack.lorry.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/generate-openstack.lorry.py b/scripts/generate-openstack.lorry.py
index 4fb48be..670602c 100755
--- a/scripts/generate-openstack.lorry.py
+++ b/scripts/generate-openstack.lorry.py
@@ -27,18 +27,19 @@ sections = [
"Orchestration",
"Database Service",
"Bare metal",
- "Common Libraries"
+ "Common Libraries",
+ "DNS Services",
]
def clean_repo(repo):
ret = None
- name_match = re.search("openstack/(.*)$", repo)
+ name_match = re.search("(openstack|stackforge)/(.*)$", repo)
# Filter out the specs repos.
# Could probably be sone in the above regexp, but don't
# have the inclination to work out how.
if name_match:
- name = name_match.group(1)
+ name = name_match.group(2)
if not re.search("specs$", name):
ret = name