From 5a82d3551c6655220d4c5d4809118db5b8eba9c0 Mon Sep 17 00:00:00 2001 From: Mark Doffman Date: Mon, 21 Jul 2014 15:52:47 +0000 Subject: Regenerate OpenStack lorry. Regenerate openstack.lorry to include repositories needed for DNS services. --- scripts/generate-openstack.lorry.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'scripts') 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 -- cgit v1.2.1