Created
December 13, 2013 19:10
-
-
Save scottslowe/7949509 to your computer and use it in GitHub Desktop.
This snippet of Puppet code configures an Ubuntu system to use the Havana packages from the Ubuntu Cloud Archive as an apt repository.
This file contains 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
apt::source { 'ubuntu-cloud': | |
location => 'http://ubuntu-cloud.archive.canonical.com/ubuntu', | |
repos => 'main', | |
release => 'precise-updates/havana', | |
include_src => false, | |
required_packages => 'ubuntu-cloud-keyring', | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment