Skip to content

Instantly share code, notes, and snippets.

@scarolan
Created October 5, 2015 20:58
Show Gist options
  • Save scarolan/1a7c1174fe70e16350e2 to your computer and use it in GitHub Desktop.
Save scarolan/1a7c1174fe70e16350e2 to your computer and use it in GitHub Desktop.
default.rb
powershell_script "Install IIS" do
action :run
code "add-windowsfeature Web-Server"
end
service "w3svc" do
action [ :enable, :start ]
end
template 'c:\inetpub\wwwroot\Default.htm' do
source "Default.htm.erb"
rights :read, "Everyone"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment