Created
October 16, 2013 15:03
-
-
Save philcryer/7009145 to your computer and use it in GitHub Desktop.
I want the new Apache DocumentRoot to be owned by apache:apache recursively - how do I do that (ie- chown -R apache:apache /opt/iaas) in chef? This isn't werking:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
directory "/opt/iaas/web/app" do | |
owner "apache" | |
group "apache" | |
mode 755 | |
action :create | |
recursive true | |
end | |
directory "/opt/iaas" do | |
recursive true | |
owner "apache" | |
group "apache" | |
mode 755 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment