-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mod::php dep items #408
Comments
Class['apache::mod::proxy'] -> Class['apache::mod::proxy_ajp'] in mod::php, we should add it after line 9.
|
Jenkins at least, is happy |
applied the patch locally and yup that made the exercise compile. |
traylenator
pushed a commit
to traylenator/puppetlabs-apache
that referenced
this issue
Jun 7, 2022
…it with stdlib's pw_hash which only allows [a-zA-Z0-9./]+ (puppetlabs#408)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Was using the puppetlabs-apache module during a training class and I think I found a couple of dep issues.
mod::php will create a configuration file using AddHandler and DirectoryIndex but doesn't make sure the mod providers for those are in the catalog. so you need to manually add these:
thinking that is something mod::php should do...
and
2) in mod/php.pp it has:
before => File[$apache::mod_dir],
shouldn't that be:
require => File[$apache::mod_dir],
?I'm thinking as is it is saying the file needs to be placed in the directory before the directory gets made...
The text was updated successfully, but these errors were encountered: