X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=README.md;h=2ce5340ab62dfd128e7db318019a046d2813ad1d;hb=5c49633f4fc82867723799d15b33ee2e950044c2;hp=c6d39151cc7e4669c0f964a18af0b40a94cf01f3;hpb=dc2a963a57105ec22cc8fcd5173c1a78025c0a7e;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/README.md b/README.md index c6d3915..2ce5340 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,8 @@ The parameters for `apt` are not required in general and are predominantly for d proxy_port => '8080', purge_sources_list => false, purge_sources_list_d => false, - purge_preferences_d => false + purge_preferences_d => false, + update_timeout => undef } Puppet will manage your system's `sources.list` file and `sources.list.d` directory but will do its best to respect existing content. @@ -101,6 +102,16 @@ Adds an apt pin for a certain release. apt::pin { 'karmic-updates': priority => 700 } apt::pin { 'karmic-security': priority => 700 } +Note you can also specifying more complex pins using distribution properties. + + apt::pin { 'stable': + priority => -10, + originator => 'Debian', + release_version => '3.0', + component => 'main', + label => 'Debian' + } + ###apt::ppa Adds a ppa repository using `add-apt-repository`. @@ -111,7 +122,9 @@ Adds a ppa repository using `add-apt-repository`. Sets the default apt release. This class is particularly useful when using repositories, like Debian, that are unstable in Ubuntu. - apt::release { 'karmic': } + class { 'apt::release': + release_id => 'precise', + } ###apt::source @@ -211,10 +224,3 @@ A lot of great people have contributed to this module. A somewhat current list f * Spencer Krum * William Van Hevelingen * Zach Leslie - -Release Notes -------------- - -**1.1.0** - -This release includes Ubuntu 12.10 (Quantal) support for PPAs.