Mercurial > repos > other > Puppet
changeset 420:3e4bc3935aa1
Remove unused mod_wsgi variable
Everything seems to be fine if we use the defaults
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 08 Oct 2022 15:59:27 +0100 |
parents | 0c627ff3a7c3 |
children | a5d1f34a7d3f |
files | manifests/templates.pp |
diffstat | 1 files changed, 0 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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, }