Skip to content

Commit

Permalink
Merge pull request #414 from phaf/fix_doc_unattended_upgrades
Browse files Browse the repository at this point in the history
Documentation: Fix typo and syntax for example of apt::unattended_upgrad...
  • Loading branch information
daenney committed Jan 30, 2015
2 parents 2415f23 + 9545a85 commit 157262e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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',
}
```

Expand Down

0 comments on commit 157262e

Please sign in to comment.