Created
January 22, 2014 17:03
-
-
Save alovak/8562582 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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