-
-
Notifications
You must be signed in to change notification settings - Fork 547
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
Missing mutex directory after installation #296
Comments
I checked the
|
Which version of apache2 and on what exact platform are you seeing this? We can definitely add a line that creates the dir, but I wonder how this relates to https://security-tracker.debian.org/tracker/CVE-2013-1048 The creation is done in the |
I am having this problem on ubuntu-14.04 with apache2 2.4.7-1ubuntu4.1 package, on docker with chef_zero (Here is my
And in the end of chef log you should be able to see the start and reload actions are skipped due to the
|
Closing based on 03bd215, please create a new ticket and reference this if you see any related issues. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Just noticed that after installation the
node['apache']['lock_dir']
is not created until the first time starting the apache2 service. It causes an error while installing passenger apache2 module, because that process tries to detect apache2 by running through the conf file and the missing lock folder would fail it.I am wondering which is the better way to solve this issue -- create the folder in my own recipe, start apache2 after installation, or create the folder in this cookbook like other folders it creates in the
default
recipe? What do you think?Thanks!
The text was updated successfully, but these errors were encountered: