095b0b3b61
Needed for Ifc3580d4b59a5f1e97de77c0c4a875b123208100 Change-Id: I984a5c63a20bc79747d3d09affd9b45371c46702
52 lines
1.7 KiB
Python
Executable File
52 lines
1.7 KiB
Python
Executable File
#!/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',
|
|
'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',
|
|
'libz-dev': 'zlib-devel',
|
|
'qemu-utils': 'qemu-img',
|
|
'python-pyopenssl': 'pyOpenSSL',
|
|
'libmysqlclient-dev': 'mysql-devel',
|
|
}
|
|
|
|
for arg in sys.argv[1:]:
|
|
print(package_map.get(arg, arg))
|
|
sys.exit(0)
|