Detect module dependencies when modules are not default-loaded #2598
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Additional Context
If you accept
default_mods => true
you get a -lot- of apache modules automatically. In my experience it's too many, which has led to us doingdefault_mods => []
to reduce the sprawl, and then adding back in what we need. That leads to a bit of whack-a-mole upon new server buildout, as a lot of this module's code assumes that you have included the default modules and it doesn't need to check. It also leads to "I'm not sure if I can remove this module" later, if you remove directives.Summary
This covers off the worst offenders I've hit in our environment:
mod_dir
,mod_autoindex
,mod_expires
,mod_dav
, andmod_cgi
. If you use vhost directory parameters that will invoke these module directives, vhost will try to make sure the module is loaded. If you're ondefault_mods => true
, this is a 'wasted' extra load; if you don't have the module loaded (say,default_mods => false
) then this brings the module in for you.Related Issues (if any)
N/A
Checklist
puppet apply
)