(FM-6273) - Removing Debian 6
[puppet-modules/puppetlabs-apt.git] / README.md
index ac945b40933428c3aaeb32a8021fd92664d48563..98dcc2ce4fd6068b2cf92e1c93c8e58347ac953c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -91,6 +91,15 @@ class { 'apt':
   },
 }
 ```
+When `Exec['apt_update']` is triggered, it will generate a `Notice` message. Because the default [logging level for agents](https://docs.puppet.com/puppet/latest/configuration.html#loglevel) is `notice`, this will cause the repository update to appear in logs and agent reports. Some tools, such as [The Foreman](https://www.theforeman.org), report the update notice as a significant change. By setting the [loglevel](https://docs.puppet.com/puppet/latest/metaparameter.html#loglevel) metaparameter for `Exec['apt_update']` above the agent logging level, one can eliminate these updates from reports:
+```puppet
+class { 'apt':
+  update => {
+    frequency => 'daily',
+    loglevel  => 'debug',
+  },
+}
+```
 
 ### Pin a specific release
 
@@ -160,7 +169,7 @@ include the `apt` class, which will pick up the values automatically from
 hiera.
 
 ```yaml
-apt::source:
+apt::sources:
   'debian_unstable':
     comment: 'This is the iWeb Debian unstable mirror'
     location: 'http://debian.mirror.iweb.ca/debian/'