commit
f05e43c285
3 changed files with 15 additions and 4 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
||||||
|
##2015-07-28 - Supported Release 2.1.1
|
||||||
|
###Summary
|
||||||
|
|
||||||
|
This release includes a few bugfixes.
|
||||||
|
|
||||||
|
####Bugfixes
|
||||||
|
- Fix incorrect use of anchoring (MODULES-2190)
|
||||||
|
- Use correct comment type for apt.conf files
|
||||||
|
- Test fixes
|
||||||
|
- Documentation fixes
|
||||||
|
|
||||||
##2015-06-16 - Supported Release 2.1.0
|
##2015-06-16 - Supported Release 2.1.0
|
||||||
###Summary
|
###Summary
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ Apt (Advanced Package Tool) is a package manager available on Debian, Ubuntu, an
|
||||||
* System repositories
|
* System repositories
|
||||||
* Authentication keys
|
* Authentication keys
|
||||||
|
|
||||||
**Note:** This module offers `purge` parameters which will cause the module to destroy any configuration on the node's `sources.list(.d)` and `preferences.list(.d)` that you haven't declared through Puppet. The default for these parameters is 'false'.
|
**Note:** This module offers `purge` parameters which, if set to 'true', **destroy** any configuration on the node's `sources.list(.d)` and `preferences.list(.d)` that you haven't declared through Puppet. The default for these parameters is 'false'.
|
||||||
|
|
||||||
### Beginning with apt
|
### Beginning with apt
|
||||||
|
|
||||||
|
@ -458,7 +458,7 @@ This module is tested and officially supported on Debian 6 and 7 and Ubuntu 10.0
|
||||||
|
|
||||||
### Adding new sources or PPAs
|
### Adding new sources or PPAs
|
||||||
|
|
||||||
If you are adding a new source or PPA and trying to install packages from the new source or PPA on the same puppet run, in addition to depending on the `Apt::Source` or the `Apt::Ppa`, your `package` resource should depend on `Class['apt::update']`. You can also add [collectors](https://docs.puppetlabs.com/puppet/latest/reference/lang_collectors.html) to ensure all packages happen after `apt::update`, but this can lead to dependency cycles and has implications for [virtual resources](https://docs.puppetlabs.com/puppet/latest/reference/lang_collectors.html#behavior)
|
If you are adding a new source or PPA and trying to install packages from the new source or PPA on the same Puppet run, your `package` resource should depend on `Class['apt::update']`, in addition to depending on the `Apt::Source` or the `Apt::Ppa`. You can also add [collectors](https://docs.puppetlabs.com/puppet/latest/reference/lang_collectors.html) to ensure that all packages happen after `apt::update`, but this can lead to dependency cycles and has implications for [virtual resources](https://docs.puppetlabs.com/puppet/latest/reference/lang_collectors.html#behavior).
|
||||||
|
|
||||||
~~~puppet
|
~~~puppet
|
||||||
Class['apt::update'] -> Package<| |>
|
Class['apt::update'] -> Package<| |>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "puppetlabs-apt",
|
"name": "puppetlabs-apt",
|
||||||
"version": "2.1.0",
|
"version": "2.1.1",
|
||||||
"author": "Puppet Labs",
|
"author": "Puppet Labs",
|
||||||
"summary": "Provides an interface for managing Apt source, key, and definitions with Puppet",
|
"summary": "Provides an interface for managing Apt source, key, and definitions with Puppet",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
"requirements": [
|
"requirements": [
|
||||||
{
|
{
|
||||||
"name": "pe",
|
"name": "pe",
|
||||||
"version_requirement": ">= 3.3.0 < 5.0.0"
|
"version_requirement": ">= 3.3.0 < 2015.3.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "puppet",
|
"name": "puppet",
|
||||||
|
|
Loading…
Reference in a new issue