Remove unused items from platform_params

Trivial-Fix

Change-Id: I5037d6e10d671902106d4a9751624947034826aa
This commit is contained in:
Takashi Kajinami 2022-08-12 01:34:51 +09:00
parent cce2e3d977
commit 51e0fa6f73
1 changed files with 0 additions and 6 deletions

View File

@ -91,23 +91,17 @@ describe 'vitrage::wsgi::apache' do
case facts[:osfamily]
when 'Debian'
{
:httpd_service_name => 'apache2',
:httpd_ports_file => '/etc/apache2/ports.conf',
:wsgi_script_path => '/usr/lib/cgi-bin/vitrage',
:wsgi_script_source => '/usr/share/vitrage-common/app.wsgi'
}
when 'RedHat'
if facts[:operatingsystemmajrelease].to_i > 8
{
:httpd_service_name => 'httpd',
:httpd_ports_file => '/etc/httpd/conf/ports.conf',
:wsgi_script_path => '/var/www/cgi-bin/vitrage',
:wsgi_script_source => '/usr/lib/python3.9/site-packages/vitrage/api/app.wsgi'
}
else
{
:httpd_service_name => 'httpd',
:httpd_ports_file => '/etc/httpd/conf/ports.conf',
:wsgi_script_path => '/var/www/cgi-bin/vitrage',
:wsgi_script_source => '/usr/lib/python3.6/site-packages/vitrage/api/app.wsgi'
}