# HG changeset patch # User IBBoard # Date 1665241167 -3600 # Node ID 3e4bc3935aa1adc4ce8ac1430a730a090af6eb0c # Parent 0c627ff3a7c3f0e90d61035d357c360c6d66b0c8 Remove unused mod_wsgi variable Everything seems to be fine if we use the defaults diff -r 0c627ff3a7c3 -r 3e4bc3935aa1 manifests/templates.pp --- a/manifests/templates.pp Sat Oct 08 15:53:01 2022 +0100 +++ b/manifests/templates.pp Sat Oct 08 15:59:27 2022 +0100 @@ -759,16 +759,13 @@ } class devsite ($proxy_4to6_ip) { if $operatingsystem == 'CentOS' and versioncmp($operatingsystemrelease, '8') >= 0 { -# $mod_wsgi_prefix = 'run/wsgi/' $package_name = 'python3-mod_wsgi' $mod_path = 'mod_wsgi_python3.so' } else { - $mod_wsgi_prefix = undef $package_name = undef $mod_path = undef } class { 'apache::mod::wsgi': - wsgi_socket_prefix => $mod_wsgi_prefix, package_name => $package_name, mod_path => $mod_path, }