Merge "Remove python_runtime references"

This commit is contained in:
Zuul 2018-04-16 14:42:42 +00:00 committed by Gerrit Code Review
commit 3abd92ed25
4 changed files with 0 additions and 19 deletions

View File

@ -20,12 +20,6 @@ include_recipe 'openstack-dashboard::horizon'
django_path = node['openstack']['dashboard']['django_path']
policy_file_path = node['openstack']['dashboard']['policy_files_path']
# use system python for fwaas dashboard
python_runtime '2' do
provider :system
version '2.7'
end
python_package 'neutron-fwaas-dashboard'
%w(

View File

@ -19,11 +19,6 @@ include_recipe 'openstack-dashboard::horizon'
django_path = node['openstack']['dashboard']['django_path']
# use system python for lbaasv2 dashboard
python_runtime '2' do
provider :system
end
python_package 'neutron-lbaas-dashboard' do
version node['openstack']['dashboard']['lbaas']['version']
notifies :run, 'execute[restore-selinux-context]', :immediately

View File

@ -16,10 +16,6 @@ describe 'openstack-dashboard::neutron-fwaas-dashboard' do
expect(chef_run).to include_recipe('openstack-dashboard::horizon')
end
it do
expect(chef_run).to install_python_runtime('2')
end
it do
expect(chef_run).to install_python_package('neutron-fwaas-dashboard')
end

View File

@ -16,10 +16,6 @@ describe 'openstack-dashboard::neutron-lbaas-dashboard' do
expect(chef_run).to include_recipe('openstack-dashboard::horizon')
end
it do
expect(chef_run).to install_python_runtime('2')
end
it do
expect(chef_run).to install_python_package('neutron-lbaas-dashboard')
end