summaryrefslogtreecommitdiff
path: root/scripts/generate-openstack.lorry.py
diff options
context:
space:
mode:
authorMark Doffman <mark.doffman@codethink.co.uk>2014-08-04 21:09:28 +0000
committerMark Doffman <mark.doffman@codethink.co.uk>2014-08-04 21:10:24 +0000
commit1d6c9a9fe6531168434b82d1ee7caa047dab774c (patch)
tree2c2d30b9d63395a20595a039fd4dea6547bb5dcc /scripts/generate-openstack.lorry.py
parentf96f5e5d0db538f084cf91bc129b4cc59f066558 (diff)
parent7ce9a738a7263ee02673d25016afd45980488048 (diff)
downloadlorries-1d6c9a9fe6531168434b82d1ee7caa047dab774c.tar.gz
Merge branch 'markdoffman/add-openstack-dependencies-v2'
Reviewed-By: Sam Thursfield <sam.thursfield@codethink.co.uk> Reviewed-By: Richard Maw <richard.maw@codethink.co.uk>
Diffstat (limited to 'scripts/generate-openstack.lorry.py')
-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