We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea211bb commit 920f519Copy full SHA for 920f519
manifests/vhost.pp
@@ -2337,18 +2337,16 @@
2337
}
2338
2339
if 'options' in $directory {
2340
- if !('-ExecCGI' in $directory['options']) {
2341
- if 'ExecCGI' in $directory['options'] {
2342
- case $apache::mpm_module {
2343
- 'prefork': {
2344
- include apache::mod::cgi
2345
- }
2346
- 'worker': {
2347
- include apache::mod::cgid
2348
2349
- default: {
2350
- # do nothing
2351
+ if !('-ExecCGI' in $directory['options']) and 'ExecCGI' in $directory['options'] {
+ case $apache::mpm_module {
+ 'prefork': {
+ include apache::mod::cgi
+ }
+ 'worker': {
+ include apache::mod::cgid
+ default: {
+ # do nothing
2352
2353
2354
0 commit comments