2013-02-13 22:16:00 +00:00
|
|
|
#!/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 = {
|
2013-04-02 00:25:25 +00:00
|
|
|
'grub-pc': 'grub2-tools grub2',
|
2013-02-13 22:16:00 +00:00
|
|
|
'linux-image-generic': 'kernel',
|
|
|
|
'open-iscsi': 'iscsi-initiator-utils',
|
|
|
|
'vlan': 'vconfig',
|
2013-04-23 10:57:25 +00:00
|
|
|
'python-dev': 'python-devel',
|
|
|
|
'libc6-dev': 'glibc-devel',
|
|
|
|
'libxml2-dev': 'libxml2-devel',
|
|
|
|
'libxslt-dev': 'libxslt-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',
|
2013-06-07 15:39:06 +00:00
|
|
|
'libz-dev': 'zlib-devel',
|
|
|
|
'qemu-utils': 'qemu-img',
|
2013-06-20 10:02:18 +00:00
|
|
|
'python-pyopenssl': 'pyOpenSSL',
|
2013-06-28 15:21:56 +00:00
|
|
|
'libmysqlclient-dev': 'mysql-devel',
|
2013-07-05 09:20:15 +00:00
|
|
|
'arping': 'iputils',
|
2013-07-11 21:35:04 +00:00
|
|
|
'augeas-tools': 'augeas',
|
|
|
|
'openssh-client': 'openssh-clients',
|
2013-08-07 20:44:55 +00:00
|
|
|
'qpidd': 'qpid-cpp-server',
|
|
|
|
'qpid-client': 'qpid-cpp-client',
|
2013-08-27 10:00:03 +00:00
|
|
|
'extlinux': 'syslinux-extlinux',
|
2013-08-26 11:03:56 +00:00
|
|
|
'mysql-client-5.5' : 'mariadb',
|
|
|
|
'mysql-server-5.5' : 'mariadb-server',
|
|
|
|
'libmysql-java' : 'mysql-connector-java',
|
2013-09-11 00:01:21 +00:00
|
|
|
'default-jre' : 'java',
|
2013-09-26 17:38:44 +00:00
|
|
|
'atftpd' : 'tftp-server',
|
2013-10-24 13:49:40 +00:00
|
|
|
'tftpd-hpa' : 'tftp-server',
|
2013-10-23 13:23:42 +00:00
|
|
|
'apache2': 'httpd',
|
|
|
|
'libapache2-mod-wsgi': 'mod_wsgi',
|
2013-02-13 22:16:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for arg in sys.argv[1:]:
|
|
|
|
print(package_map.get(arg, arg))
|
|
|
|
sys.exit(0)
|