Update cookbooks and add wordpress cookbook

This commit is contained in:
Greg Karékinian
2016-02-19 18:09:49 +01:00
parent 9ba973e3ac
commit 820b0ab3f8
606 changed files with 22421 additions and 14084 deletions

View File

@@ -0,0 +1,17 @@
case node[:platform_family]
when %r(debian|ubuntu)
package 'selinux-utils'
when 'rhel', 'fedora'
package 'libselinux-utils'
else
# implement support for your platform here!
raise "#{node[:platform_family]} not supported!"
end
directory '/etc/selinux' do
owner 'root'
group 'root'
mode '0755'
action :create
end