Alphabetize Fedora services dictionary

This patch alphabetizes the Fedora services dictionary in
map-services.

Change-Id: If35b0249c33e553937e7016c2480aee45f1c7353
This commit is contained in:
Newell Jensen 2014-02-27 18:01:41 -08:00
parent e5afa4d6f9
commit 1646d30d1d

View File

@ -23,6 +23,9 @@ import sys
# distromatch or other rich data sources.
# TripleO service name on the left, Fedora on the right.
service_map = {
'cinder-api': 'openstack-cinder-api',
'cinder-scheduler': 'openstack-cinder-scheduler',
'cinder-volume': 'openstack-cinder-volume',
'glance-api': 'openstack-glance-api',
'glance-reg': 'openstack-glance-registry',
'heat-api': 'openstack-heat-api',
@ -30,6 +33,7 @@ service_map = {
'heat-api-cloudwatch': 'openstack-heat-api-cloudwatch',
'heat-engine': 'openstack-heat-engine',
'keystone': 'openstack-keystone',
'libvirt-bin': 'libvirtd',
'mysql': 'mysqld',
'nova-conductor': 'openstack-nova-conductor',
'nova-api': 'openstack-nova-api',
@ -41,11 +45,7 @@ service_map = {
'swift-account': 'openstack-swift-account',
'swift-container': 'openstack-swift-container',
'swift-object': 'openstack-swift-object',
'cinder-api': 'openstack-cinder-api',
'cinder-scheduler': 'openstack-cinder-scheduler',
'cinder-volume': 'openstack-cinder-volume',
'tgt': 'tgtd',
'libvirt-bin': 'libvirtd',
}
for arg in sys.argv[1:]: