Skip to content

Instantly share code, notes, and snippets.

@alovak
Created January 22, 2014 17:03
Show Gist options
  • Save alovak/8562582 to your computer and use it in GitHub Desktop.
Save alovak/8562582 to your computer and use it in GitHub Desktop.
include_recipe "apt"
apt_repository 'precise-multiverse' do
uri 'http://us.archive.ubuntu.com/ubuntu'
distribution "precise"
components ['multiverse']
deb_src true
notifies :run, "execute[apt-get update]", :immediately
end
apt_repository 'precise-updates-multiverse' do
uri 'http://us.archive.ubuntu.com/ubuntu'
distribution "precise-updates"
components ['multiverse']
deb_src true
notifies :run, "execute[apt-get update]", :immediately
end
package "ec2-ami-tools"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment