Created
October 4, 2013 14:51
-
-
Save scottslowe/6827241 to your computer and use it in GitHub Desktop.
This snippet of Puppet code, designed for use with the Puppet Labs apt module, configures an Ubuntu system to use the Ubuntu Cloud Archive.
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/grizzly', | |
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