From 3d830b1fb7b12f11cf0127e0fc14ef65983991bc Mon Sep 17 00:00:00 2001 From: Mark Doffman Date: Thu, 17 Jul 2014 15:24:47 +0000 Subject: Regenerate openstack lorry. Regenerate openstack lorry to add the DNS services projects. --- scripts/generate-openstack.lorry.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'scripts/generate-openstack.lorry.py') 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