From 9545a85b06ad9374b56388a1b55a981923612809 Mon Sep 17 00:00:00 2001 From: Patric Hafner Date: Thu, 29 Jan 2015 14:48:47 +0100 Subject: [PATCH] Documentation: Fix typo and syntax for example of apt::unattended_upgrades --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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', } ``` -- 2.45.2