Add RDO/SUSE rule for heat-agents

On both platforms, heat-agents translates to openstack-heat-agents.

Change-Id: If01f7e4a5c7ba65beaae78e1b7b7123f61118cf3
This commit is contained in:
Thomas Bechtold 2019-03-04 10:27:18 +01:00
parent d9c875f1a4
commit b62ccc6b09
2 changed files with 6 additions and 0 deletions

View File

@ -166,6 +166,8 @@ RDO_PKG_MAP = [
SingleRule('google-api-python-client', 'python-google-api-client',
py3pkg='python3-google-api-client'),
SingleRule('GitPython', 'GitPython', py3pkg='python3-GitPython'),
SingleRule('heat-agents', 'openstack-heat-agents',
py3pkg='openstack-heat-agents'),
SingleRule('pyOpenSSL', 'pyOpenSSL', py3pkg='python3-pyOpenSSL'),
SingleRule('IPy', 'python-IPy', py3pkg='python-IPy-python3'),
SingleRule('pycrypto', 'python-crypto', py3pkg='python3-crypto'),
@ -288,6 +290,8 @@ SUSE_PKG_MAP = [
SingleRule('designate-dashboard', 'openstack-horizon-plugin-designate-ui'),
SingleRule('freezer-web-ui', 'openstack-horizon-plugin-freezer-ui'),
SingleRule('group-based-policy-ui', 'openstack-horizon-plugin-gbp-ui'),
SingleRule('heat-agents', 'openstack-heat-agents',
py3pkg='openstack-heat-agents'),
SingleRule('horizon', 'openstack-dashboard'),
SingleRule('ironic-ui', 'openstack-horizon-plugin-ironic-ui'),
SingleRule('magnum-ui', 'openstack-horizon-plugin-magnum-ui'),

View File

@ -58,6 +58,8 @@ class Pymod2PkgTests(unittest.TestCase):
'python-neutronclient')
self.assertEqual(pymod2pkg.module2package('Tempest', 'suse'),
'openstack-tempest')
self.assertEqual(pymod2pkg.module2package('heat-agents', 'suse'),
'openstack-heat-agents')
def test_translation_ubuntu(self):
self.assertEqual(pymod2pkg.module2package('nova', 'ubuntu'),