X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=README.md;h=a77dcdd48b361b836b10e1cf1dabc463bf0768a0;hb=0163183745b3ed0112c7dcc6ed56f45dfdd9dd74;hp=a93d7bda7b687afe3ca3de7921d50f916a61dbb8;hpb=45a3ce3c5179390d1990df67bc9fc937cb28028c;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/README.md b/README.md index a93d7bd..a77dcdd 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,11 @@ #### Table of Contents -2. [Module Description - What the module does and why it is useful](#module-description) -3. [Setup - The basics of getting started with apt](#setup) +1. [Module Description - What the module does and why it is useful](#module-description) +1. [Setup - The basics of getting started with apt](#setup) * [What apt affects](#what-apt-affects) * [Beginning with apt](#beginning-with-apt) -4. [Usage - Configuration options and additional functionality](#usage) +1. [Usage - Configuration options and additional functionality](#usage) * [Add GPG keys](#add-gpg-keys) * [Prioritize backports](#prioritize-backports) * [Update the list of packages](#update-the-list-of-packages) @@ -15,14 +15,14 @@ * [Add a Personal Package Archive repository](#add-a-personal-package-archive-repository) * [Configure Apt from Hiera](#configure-apt-from-hiera) * [Replace the default sources.list file](#replace-the-default-sourceslist-file) -5. [Reference - An under-the-hood peek at what the module is doing and how](#reference) +1. [Reference - An under-the-hood peek at what the module is doing and how](#reference) * [Classes](#classes) * [Defined Types](#defined-types) * [Types](#types) * [Facts](#facts) * [Tasks](#tasks) -6. [Limitations - OS compatibility, etc.](#limitations) -7. [Development - Guide for contributing to the module](#development) +1. [Limitations - OS compatibility, etc.](#limitations) +1. [Development - Guide for contributing to the module](#development) ## Module Description @@ -255,11 +255,17 @@ apt::source { "archive.ubuntu.com-${lsbdistcodename}-backports": ### Facts -* `apt_updates`: The number of installed packages with available updates. +* `apt_updates`: The number of installed packages with available updates from `upgrade`. -* `apt_security_updates`: The number of installed packages with available security updates. +* `apt_dist_updates`: The number of installed packages with available updates from `dist-upgrade`. -* `apt_package_updates`: The names of all installed packages with available updates. In Facter 2.0 and later this data is formatted as an array; in earlier versions it is a comma-delimited string. +* `apt_security_updates`: The number of installed packages with available security updates from `upgrade`. + +* `apt_security_dist_updates`: The number of installed packages with available security updates from `dist-upgrade`. + +* `apt_package_updates`: The names of all installed packages with available updates from `upgrade`. In Facter 2.0 and later this data is formatted as an array; in earlier versions it is a comma-delimited string. + +* `apt_package_dist_updates`: The names of all installed packages with available updates from `dist-upgrade`. In Facter 2.0 and later this data is formatted as an array; in earlier versions it is a comma-delimited string. * `apt_update_last_success`: The date, in epochtime, of the most recent successful `apt-get update` run (based on the mtime of /var/lib/apt/periodic/update-success-stamp).