dd7b7765e6
Some of the tripleo-image-elements were failing for RHEL due to lack of build essential, python-dev and libz-dev. This commit should fix those failure. Change-Id: I080f9601faedb3259deada5cfbda7d00d3f13eb9
45 lines
1.4 KiB
Python
Executable File
45 lines
1.4 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
#
|
|
# 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, RHEL on the right.
|
|
package_map = {
|
|
'grub-pc': 'grub',
|
|
'extlinux': 'syslinux-extlinux',
|
|
'open-iscsi': 'iscsi-initiator-utils',
|
|
'vlan': 'vconfig',
|
|
'augeas-tools': 'augeas',
|
|
'build-essential': 'make automake gcc gcc-c++ kernel-devel',
|
|
'openssh-client': 'openssh-clients',
|
|
'default-jre': 'java-1.7.0-openjdk',
|
|
'tftpd-hpa': 'tftp-server',
|
|
'libffi-dev': 'libffi-devel',
|
|
'libxml2-dev': 'libxml2-devel',
|
|
'libxslt-dev': 'libxslt-devel',
|
|
'libz-dev': 'zlib-devel',
|
|
'python-dev': 'python-devel',
|
|
'gearman-job-server': 'gearmand',
|
|
'tgt': 'scsi-target-utils',
|
|
'stunnel4': 'stunnel',
|
|
'libvirt-bin': 'libvirtd',
|
|
}
|
|
|
|
for arg in sys.argv[1:]:
|
|
print(package_map.get(arg, arg))
|
|
sys.exit(0)
|