From: Patric Hafner Date: Thu, 29 Jan 2015 13:48:47 +0000 (+0100) Subject: Documentation: Fix typo and syntax for example of apt::unattended_upgrades X-Git-Tag: 1.8.0~17^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=9545a85b06ad9374b56388a1b55a981923612809;p=puppet-modules%2Fpuppetlabs-apt.git Documentation: Fix typo and syntax for example of apt::unattended_upgrades --- diff --git a/README.md b/README.md index 04bb339..a3e432e 100644 --- a/README.md +++ b/README.md @@ -72,16 +72,16 @@ class { 'apt': } ``` -* `apt::unattended_updates`: This class manages the unattended-upgrades package and related configuration files for Ubuntu and Debian systems. You can configure the class to automatically upgrade all new package releases or just security releases. +* `apt::unattended_upgrades`: This class manages the unattended-upgrades package and related configuration files for Ubuntu and Debian systems. You can configure the class to automatically upgrade all new package releases or just security releases. ``` - apt::unattended_upgrades { - origins = $::apt::params::origins, - blacklist = [], - update = '1', - download = '1', - upgrade = '1', - autoclean = '7', + class { 'apt::unattended_upgrades': + origins => $::apt::params::origins, + blacklist => [], + update => '1', + download => '1', + upgrade => '1', + autoclean => '7', } ```