Skip to content

Instantly share code, notes, and snippets.

@ryandotclair
Created October 26, 2015 03:00
Show Gist options
  • Save ryandotclair/92b93795923fe6f64b2e to your computer and use it in GitHub Desktop.
Save ryandotclair/92b93795923fe6f64b2e 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