Skip to content

Commit

Permalink
Write out default site
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Aumann committed Jun 18, 2013
1 parent c00555b commit 7ab88ed
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions recipes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,17 @@
#
# All rights reserved - Do Not Redistribute
#

package 'apache2'

service 'apache2' do
action [:enable, :start]
end

template '/var/www/index.html' do
owner 'root'
group 'root'
mode '0755'
source 'index.html.erb'
end

0 comments on commit 7ab88ed

Please sign in to comment.