From f2eeaf1e22d4e29e10647d433c6192e44d52d84c Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 12 Aug 2022 01:33:43 +0900 Subject: [PATCH] Remove unused items from platform_params Trivial-Fix Change-Id: Ibd542cd5bc15d7573da6d605578344e2648d6af6 --- spec/classes/zaqar_wsgi_apache_spec.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/spec/classes/zaqar_wsgi_apache_spec.rb b/spec/classes/zaqar_wsgi_apache_spec.rb index ca4d47e..55cb464 100644 --- a/spec/classes/zaqar_wsgi_apache_spec.rb +++ b/spec/classes/zaqar_wsgi_apache_spec.rb @@ -89,23 +89,17 @@ describe 'zaqar::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/zaqar', :wsgi_script_source => '/usr/lib/python3/dist-packages/zaqar/transport/wsgi/app.py' } 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/zaqar', :wsgi_script_source => '/usr/lib/python3.9/site-packages/zaqar/transport/wsgi/app.py' } else { - :httpd_service_name => 'httpd', - :httpd_ports_file => '/etc/httpd/conf/ports.conf', :wsgi_script_path => '/var/www/cgi-bin/zaqar', :wsgi_script_source => '/usr/lib/python3.6/site-packages/zaqar/transport/wsgi/app.py' }