diskimage-builder/elements/fedora/bin/map-packages
Dirk Mueller abc3bcd2f3 Adjust neutron package install for Fedora
With https://review.openstack.org/#/c/70721 installing
the dhcp-agent subpackage was introduced, which is needed
for openSUSE. It seems on Fedora this is part of the main
package, so we need to map it back to that one.

Change-Id: I80f8412d291b3571d220fd26cfece86a03479440
2014-02-06 23:11:56 +01:00

74 lines
2.5 KiB
Python
Executable File

#!/usr/bin/env python
# Copyright 2012 Hewlett-Packard Development Company, L.P.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import sys
# Manually maintained for brevity; consider making this compiled from
# distromatch or other rich data sources.
# Debian name on the left, Fedora on the right.
package_map = {
'grub-pc': 'grub2-tools grub2',
'linux-image-generic': 'kernel',
'open-iscsi': 'iscsi-initiator-utils',
'vlan': 'vconfig',
'libc6-dev': 'glibc-devel',
'python-libvirt': 'libvirt-python',
'libvirt-bin': 'libvirt',
'python-xattr': 'pyxattr',
'python-memcache': 'python-memcached',
'tgt': 'scsi-target-utils',
'build-essential': 'make automake gcc gcc-c++ kernel-devel',
'python-mysqldb': 'MySQL-python',
'openvswitch-common': 'openvswitch',
'openvswitch-switch': 'openvswitch',
'python-numpy': 'numpy',
'libssl-dev': 'openssl-devel',
'libz-dev': 'zlib-devel',
'qemu-utils': 'qemu-img',
'python-pyopenssl': 'pyOpenSSL',
'libmysqlclient-dev': 'mysql-devel',
'arping': 'iputils',
'augeas-tools': 'augeas',
'openssh-client': 'openssh-clients',
'qpidd': 'qpid-cpp-server',
'qpid-client': 'qpid-cpp-client',
'extlinux': 'syslinux-extlinux',
'mysql-client-5.5' : 'mariadb',
'mysql-server-5.5' : 'mariadb-server',
'libmysql-java' : 'mysql-connector-java',
'default-jre' : 'java',
'tftpd-hpa' : 'tftp-server',
'apache2': 'httpd',
'libapache2-mod-wsgi': 'mod_wsgi',
'gearman-job-server': 'gearmand',
'stunnel4': 'stunnel',
'snmpd': 'net-snmp',
'snmp-mibs-downloader': '',
'lm-sensors': 'lm_sensors',
'nagios-plugins-basic': 'nagios-plugins-all',
# openstack mappings
'openstack-neutron-dhcp-agent': 'openstack-neutron',
}
for arg in sys.argv[1:]:
if arg not in package_map and arg.endswith('-dev'):
# convert -dev into devel
print('%s%s' % (arg, 'el'))
else:
print(package_map.get(arg, arg))
sys.exit(0)