Skip to content

Instantly share code, notes, and snippets.

@ryandotclair
Created October 26, 2015 16:19
Show Gist options
  • Save ryandotclair/977aaa65ee34db7b0f54 to your computer and use it in GitHub Desktop.
Save ryandotclair/977aaa65ee34db7b0f54 to your computer and use it in GitHub Desktop.
Chef Example Recipe
package "httpd" do
action :install
end
service "httpd" do
action [:enable, :start]
end
template "/var/www/html/index.html" do
source "index.html.erb"
mode "0644"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment