-
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
Bugfix: require concat, not file #1350
Conversation
|
👍 |
|
Looks like you might need to update line 507 of apache_spec.rb also? |
|
Should really create a basic compile test as well. Currently something as simple as: class { 'apache': } fails to compile due to this issue |
|
@rvincentatprokarmadotcom this looks like a popular fix, it is however breaking the unit tests. They will also need looked at. Thanks for the work you have put in. |
38d844f
to
2f78dab
Compare
|
On 02/01/2016 08:17 AM, Ben Hocker wrote: Looks like you might need to update line 507 of apache_spec.rb also? Reply to this email directly or view it on GitHubhttps://github.com//pull/1350#issuecomment-177968481. So mote it behttps://github.com/rvincentatprokarmadotcom/puppetlabs-apache/commit/2f78dab061378ed6e0e5b7c6aa670dd2625dea14. Robert August Vincent II |
Bugfix: require concat, not file
|
So apparently the CI tests failed because Ubuntu Trusty does not contain the fastcgi module? |
|
It is failing for all PRs at the minute, we will need to look closer into why. When i look at our jenkins pipelines, there is no such issue. |
|
Well, when I look at the results from the failing test case, I see:
and
|
|
See #1353 |
The $ports_file is created via the concat resource, not the file resource.
Therefore, the related require attribute should reference concat, not file.
This also fixes bug 2850