Add testing, docs, and examples for backports
[puppet-modules/puppetlabs-apt.git] / README.md
1 # apt
2
3 ## Overview
4
5 The apt module provides a simple interface for managing Apt source, key, and definitions with Puppet.
6
7 ## Module Description
8
9 The apt module automates obtaining and installing software packages on \*nix systems.
10
11 **Note**: While this module allows the use of short keys, **warnings are thrown if a full fingerprint is not used**, as they pose a serious security issue by opening you up to collision attacks.
12
13 ## Setup
14
15 ### What apt affects:
16
17 * Package/service/configuration files for Apt
18 * Your system's `sources.list` file and `sources.list.d` directory
19 * System repositories
20 * Authentication keys
21
22 **Note**: By default, this module will **destroy** any existing content in `sources.list` and `sources.list.d` that was not declared with Puppet.
23
24 ### Beginning with apt
25
26 To begin using the apt module with default parameters, declare the class with `include apt`.
27
28 Any Puppet code that uses anything from the apt module requires that the core apt class be declared.
29
30 ## Usage
31
32 Using the apt module consists predominantly of declaring classes and defined types that provide the desired functionality and features. This module provides common resources and options that are shared by the various defined types in the apt module, so you **must always** include this class in your manifests.
33
34 ```puppet
35 class { 'apt': }
36 ```
37
38 ## Reference
39
40 ### Classes
41
42 * `apt`: Main class, provides common resources and options. Allows Puppet to manage your system's sources.list file and sources.list.d directory. By default, it will purge any existing content it finds that wasn't declared with Puppet.
43   
44   * `apt::backports`: This class adds the necessary components to get backports for Ubuntu and Debian. The release name defaults to "$lsbdistcodename-backports". Setting this manually can cause undefined and potentially serious behavior.
45
46     By default, this class drops a pin-file for backports, pinning it to a priority of 200. This is lower than the normal Debian archive, which gets a priority of 500 to ensure that packages with `ensure => latest` don't get magically upgraded from backports without your explicit permission.
47
48       If you raise the priority through the `pin` parameter to 500---identical to the rest of the Debian mirrors---normal policy goes into effect, and Apt installs or upgrades to the newest version. This means that if a package is available from backports, it and its dependencies are pulled in from backports unless you explicitly set the `ensure` attribute of the `package` resource to `installed`/`present` or a specific version.
49
50 * `apt::params`: Sets defaults for the apt module parameters.
51
52 * `apt::update`: Runs `apt-get update`, updating the list of available packages and their versions without installing or upgrading any packages. The update runs on the first Puppet run after you include the class, then whenever `notify  => Exec['apt_update']` occurs; i.e., whenever config files get updated or other relevant changes occur. If you set `update['frequency']` to `'always'`, the update runs on every Puppet run.
53
54 ### Types
55
56 * `apt_key`
57
58   A native Puppet type and provider for managing GPG keys for Apt is provided by this module.
59
60   ```puppet
61   apt_key { 'puppetlabs':
62     ensure => 'present',
63     id     => '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30',
64   }
65   ```
66
67   You can additionally set the following attributes:
68
69    * `source`: HTTP, HTTPS or FTP location of a GPG key or path to a file on the target host.
70    * `content`: Instead of pointing to a file, pass the key in as a string.
71    * `server`: The GPG key server to use. It defaults to *keyserver.ubuntu.com*.
72    * `options`: Additional options to pass to `apt-key`'s `--keyserver-options`.
73
74 ### Defined Types
75
76 * `apt::conf`: Specifies a custom configuration file. The priority defaults to 50, but you can set the priority parameter to load the file earlier or later. The content parameter passes specified content, if any, into the file resource.
77
78 * `apt::key`: Adds a key to the list of keys used by Apt to authenticate packages. This type uses the aforementioned `apt\_key` native type. As such, it no longer requires the `wget` command on which the old implementation depended.
79
80   ```puppet
81   apt::key { 'puppetlabs':
82     id     => '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30',
83     server => 'pgp.mit.edu',
84   }
85
86   apt::key { 'jenkins':
87     id     => '150FDE3F7787E7D11EF4E12A9B7D32F2D50582E6',
88     source => 'http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key',
89   }
90   ```
91
92 * `apt::pin`: Defined type that adds an Apt pin for a certain release.
93
94   ```puppet
95   apt::pin { 'karmic': priority => 700 }
96   apt::pin { 'karmic-updates': priority => 700 }
97   apt::pin { 'karmic-security': priority => 700 }
98   ```
99
100   Note that you can also specify more complex pins using distribution properties.
101
102   ```puppet
103   apt::pin { 'stable':
104     priority        => -10,
105     originator      => 'Debian',
106     release_version => '3.0',
107     component       => 'main',
108     label           => 'Debian'
109   }
110   ```  
111
112   If you want to pin a number of packages, you can specify the packages as a space-delimited string using the `packages` attribute, or you can pass in an array of package names.
113
114 * `apt::ppa`: Adds a PPA repository using `add-apt-repository`. For example, `apt::ppa { 'ppa:drizzle-developers/ppa': }`.
115
116 * `apt::setting`: Defined type to abstract the creation of Apt configuration files.
117
118 * `apt::source`: Adds an Apt source to `/etc/apt/sources.list.d/`. For example:
119
120   ```puppet
121   apt::source { 'debian_unstable':
122     comment  => 'This is the iWeb Debian unstable mirror',
123     location => 'http://debian.mirror.iweb.ca/debian/',
124     release  => 'unstable',
125     repos    => 'main contrib non-free',
126     pin      => '-10',
127     key      => {
128       'id'     => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553',
129       'server' => 'subkeys.pgp.net',
130     },
131     include  => {
132       'src' => true,
133       'deb' => true,
134     },
135   }
136   ```  
137
138   For example, to configure your system so the source is the Puppet Labs Apt repository:
139
140   ```puppet
141   apt::source { 'puppetlabs':
142     location => 'http://apt.puppetlabs.com',
143     repos    => 'main',
144     key      => {
145       'id'     => '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30',
146       'server' => 'pgp.mit.edu',
147     },
148   ```
149
150 ### Facts
151
152 The apt module includes a few facts to describe the state of the Apt system:
153
154 * `apt\_updates`: The number of updates available on the system
155 * `apt\_security\_updates`: The number of updates which are security updates
156 * `apt\_package\_updates`: The package names that are available for update. In Facter 2.0 and later, this will be a list type; in earlier versions, it is a comma-delimited string.
157 * `apt\_update\_last\_success`: The date, in epochtime, of the most recent successful `apt-get update` run. This is determined by reading the mtime of  /var/lib/apt/periodic/update-success-stamp.
158
159 **Note:** The facts depend on 'update-notifier' being installed on your system. Though this is a GNOME daemon only the support files are needed so the package 'update-notifier-common' is enough to enable this functionality.
160
161 #### Hiera example
162
163 ```yaml
164 apt::sources:
165   'debian_unstable':
166     location: 'http://debian.mirror.iweb.ca/debian/'
167     release: 'unstable'
168     repos: 'main contrib non-free'
169     key:
170       id: '9AA38DCD55BE302B'
171       server: 'subkeys.pgp.net'
172     pin: '-10'
173     include:
174       src: true
175       deb: true
176
177   'puppetlabs':
178     location: 'http://apt.puppetlabs.com'
179     repos: 'main'
180     key:
181       id: '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30'
182       server: 'pgp.mit.edu'
183 ```
184
185 ### Parameters
186
187 ####apt
188
189 * `update`: Hash to configure various update settings. Valid keys are:
190   * 'frequency': The run frequency for `apt-get update`. Defaults to 'reluctantly'. Accepts the following values:
191     * 'always': Runs update at every Puppet run.
192     * 'daily': Runs update daily; that is, `apt-get update` runs if the value of `apt\_update\_last\_success` is less than current epoch time - 86400. If the exec resource `apt\_update` is notified, `apt-get update` runs regardless of this value. 
193     * 'weekly': Runs update weekly; that is, `apt-get update` runs if the value of `apt\_update\_last\_success` is less than current epoch time - 604800. If the exec resource `apt\_update` is notified, `apt-get update` runs regardless of this value. 
194     * 'reluctantly': Only runs `apt-get update` if the exec resource `apt\_update` is notified. This is the default setting.  
195   * 'timeout': Overrides the exec timeout in seconds for `apt-get update`. Defaults to exec default (300).
196   * 'tries': Sets how many times to attempt running `apt-get update`. Use this to work around transient DNS and HTTP errors. By default, the command runs only once.
197 * `purge`: Hash to configure various purge settings. Valid keys are:
198   * 'sources.list': If set to 'true', Puppet purges all unmanaged entries from sources.list. Accepts `true` or `false`. Defaults to `true`.
199   * 'sources.list.d': If set to 'true', Puppet purges all unmanaged entries from sources.list.d. Accepts `true` or `false`. Defaults to `true`.
200   * 'preferences.list': If set to 'true', Puppet purges all unmanaged entries from preferences.list. Accepts `true` or `false`. Defaults to `true`.
201   * 'preferences.list.d': If set to 'true', Puppet purges all unmanaged entries from preferences.list.d. Accepts `true` or `false`. Defaults to `true`.
202 * `proxy`: Hash to configure various proxy settings. Valid keys are:
203   * 'host': Configures a proxy host and stores the configuration in /etc/apt/apt.conf.d/01proxy.
204   * 'port': Configures a proxy port and stores the configuration in /etc/apt/apt.conf.d/01proxy.
205   * 'https': Boolean to configure whether or not to enable https proxies. Defaults to false.
206 * `keys`: Passes a hash to `create\_resource` to make new `apt::key` resources.
207 * `ppas`: Passes a hash to `create\_resource` to make new `apt::ppa` resources.
208 * `settings`: Passes a hash to `create\_resource` to make new `apt::setting` resources.
209 * `sources`: Passes a hash to `create\_resource` to make new `apt::source` resources.
210
211 ####apt::backports
212
213 * `location`: The URL of the apt repository. OS-dependent defaults are specifed in `apt::params` for Ubuntu and Debian. Required parameter for other OSes.
214 * `release`: The distribution of the apt repository. Defaults to "${lsbdistcodename}-backports" for Ubuntu and Debian. Required parameter for other OSes.
215 * `repos`: The component of the apt repository. OS-dependent defaults are speicifed in `apt::params` for Ubuntu and Debian. Required parameter for other OSes.
216 * `key`: The key for the backports repository. Can either be a string or a hash. See apt::setting for details on passing key as a hash. OS-dependent defaults are specified in `apt::params` for Ubuntu and Debian. Required parameter for other OSes.
217 * `pin`: The pin priority for backports repository. Can either be a number, a string, or a hash that will be passed as parameters to `apt::pin`. Defaults to `200`.
218
219 ####apt::conf
220
221 * `content`: The content of the configuration file.
222 * `ensure`: Whether the configuration file should be 'present' or 'absent'. Defaults to 'present'.
223 * `priority`: Numeric priority for the configuration file. Defaults to '50'.
224
225 ####apt::key
226
227 * `ensure`: The state we want this key in. Can be 'present' or 'absent'.
228 * `id`: Is a GPG key ID or full key fingerprint. This value is validated with a regex enforcing it to only contain valid hexadecimal characters, be precisely 8 or 16 hexadecimal characters long and optionally prefixed with 0x for key IDs, or 40 hexadecimal characters long for key fingerprints.
229 * `content`: This parameter can be used to pass in a GPG key as a string in case it cannot be fetched from a remote location and using a file resource is for other reasons inconvenient.
230 * `source`: This parameter can be used to pass in the location of a GPG key. This URI can take the form of a `URL` (ftp, http or https) and a `path` (absolute path to a file on the target system).
231 * `server`: The keyserver from where to fetch our GPG key. It can either be a domain name or URL. It defaults to 'keyserver.ubuntu.com'.
232 * `options`: Additional options to pass on to `apt-key adv --keyserver-options`.
233
234 ####apt::pin
235
236 * `ensure`: The state we want this pin in. Can be 'present' or 'absent'.
237 * `explanation`: Add a comment. Defaults to `${caller\_module\_name}: ${name}`.
238 * `order`: The order of the file name. Defaults to undef, otherwise must be an integer.
239 * `packages`: The list of packages to pin. Defaults to '\*'. Can be an array or string. 
240 * `priority`: Several versions of a package may be available for installation when the sources.list(5) file contains references to more than one distribution (for example, stable and testing). APT assigns a priority to each version that is available. Subject to dependency constraints, apt-get selects the version with the highest priority for installation.
241 * `release`: The Debian release. Defaults to ''. Typical values can be 'stable', 'testing' and 'unstable'.
242 * `origin`: Can be used to match a hostname. The following record will assign a high priority to all versions available from the server identified by the hostname. Defaults to ''.
243 * `version`: The specific form assigns a priority (a "Pin-Priority") to one or more specified packages with a specified version or version range.
244 * `codename`: The distribution (lsbdistcodename) of the apt repository. Defaults to ''.
245 * `release\_version`: Names the release version. For example, the packages in the tree might belong to Debian release version 7. Defaults to ''.
246 * `component`: Names the licensing component associated with the packages in the directory tree of the Release file. defaults to ''. Typical values can be 'main', 'dependencies' and 'restricted'
247 * `originator`: Names the originator of the packages in the directory tree of the Release file. Defaults to ''. Most commonly, this is Debian.
248 * `label`: Names the label of the packages in the directory tree of the Release file. Defaults to ''. Most commonly, this is Debian.
249
250 **Note**: Parameters release, origin, and version are mutually exclusive.
251
252 It is recommended to read the manpage 'apt_preferences(5)'
253
254 ####apt::ppa
255
256 * `ensure`: Whether we are adding or removing the PPA. Can be 'present' or 'absent'. Defaults to 'present'.
257 * `release`: The codename for the operating system you're running. Defaults to `$lsbdistcodename`. Required if lsb-release is not installed.
258 * `options`: Options to be passed to the `apt-add-repository` command. OS-dependent defaults are set in `apt::params`.
259 * `package\_name`: The package that provides the `apt-add-repository` command. OS-dependent defaults are set in `apt::params`.
260 * `package\_manage`: Whether or not to manage the package providing `apt-add-repository`. Defaults to true.
261
262 ####apt::setting
263
264 * `priority`: Integer or zero-padded integer setting the file priority. Defaults to 50.
265 * `ensure`: Whether to add or remove the file. Valid values are 'present', 'absent', and 'file'. Defaults to `file`.
266 * `source`: The source for the file. Exactly one of `content` and `source` must be specified.
267 * `content`: The content for the file. Exactly one of `content` and `source` must be specified.
268 * `notify\_update`: Boolean for whether or not this `apt::setting` should trigger an `apt-get update`. Defaults to `true`.
269
270 ####apt::source
271
272 * `comment`: Add a comment to the apt source file.
273 * `ensure`: Allows you to remove the apt source file. Can be 'present' or 'absent'.
274 * `location`: The URL of the apt repository. Defaults to undef. Required unless `ensure => 'absent'`.
275 * `release`: The distribution of the apt repository. Defaults to fact 'lsbdistcodename'.
276 * `repos`: The component of the apt repository. This defaults to 'main'.
277 * `include`: Hash to configure include options. Valid keys are:
278   * 'deb': References a Debian distribution's binary package. Defaults to `true`.
279   * 'src': Enable the deb-src type, references a Debian distribution's source code in the same form as the `include['deb']` type. A deb-src line is required to fetch source indexes. Defaults to `false`.
280 * `key`: Add key from source. Takes either a string or a hash. If a string, the value will be passed to `id` in the `apt::key`. If a hash, valid keys are:
281   * 'id': See `id` in `apt::key`. Required if a hash is specified.
282   * 'server': See `server` in `apt::key`
283   * 'content': See `content` in `apt::key`
284   * 'source': See `source` in `apt::key`
285   * 'options': See `options` in `apt::key`
286 * `pin`: See apt::pin. Defaults to undef. Can be a string, number, or a hash to be passed as parameters to `apt::pin`.
287 * `architecture`: can be used to specify for which architectures information should be downloaded. If this option is not set all architectures defined by the APT::Architectures option will be downloaded. Defaults to `undef` which means all. Example values can be 'i386' or 'i386,alpha,powerpc'.
288 * `allow\_unsigned`: can be set to indicate that packages from this source are always authenticated even if the Release file is not signed or the signature can't be checked. Defaults to `false`. Can be `true` or `false`.
289
290 Limitations
291 -----------
292
293 This module should work across all versions of Debian/Ubuntu and support all major Apt repository management features.
294
295 Development
296 ------------
297
298 Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can't access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.
299
300 We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
301
302 You can read the complete module contribution guide [on the Puppet Labs wiki.](http://projects.puppetlabs.com/projects/module-site/wiki/Module_contributing)
303
304 License
305 -------
306
307 The original code for this module comes from Evolving Web and was licensed under the MIT license. Code added since the fork of this module is licensed under the Apache 2.0 License like the rest of the Puppet Labs products.
308
309 The LICENSE contains both licenses.
310
311 Contributors
312 ------------
313
314 A lot of great people have contributed to this module. A somewhat current list follows:
315
316 * Ben Godfrey <ben.godfrey@wonga.com>
317 * Branan Purvine-Riley <branan@puppetlabs.com>
318 * Christian G. Warden <cwarden@xerus.org>
319 * Dan Bode <bodepd@gmail.com> <dan@puppetlabs.com>
320 * Daniel Tremblay <github@danieltremblay.ca>
321 * Garrett Honeycutt <github@garretthoneycutt.com>
322 * Jeff Wallace <jeff@evolvingweb.ca> <jeff@tjwallace.ca>
323 * Ken Barber <ken@bob.sh>
324 * Matthaus Litteken <matthaus@puppetlabs.com> <mlitteken@gmail.com>
325 * Matthias Pigulla <mp@webfactory.de>
326 * Monty Taylor <mordred@inaugust.com>
327 * Peter Drake <pdrake@allplayers.com>
328 * Reid Vandewiele <marut@cat.pdx.edu>
329 * Robert Navarro <rnavarro@phiivo.com>
330 * Ryan Coleman <ryan@puppetlabs.com>
331 * Scott McLeod <scott.mcleod@theice.com>
332 * Spencer Krum <spencer@puppetlabs.com>
333 * William Van Hevelingen <blkperl@cat.pdx.edu> <wvan13@gmail.com>
334 * Zach Leslie <zach@puppetlabs.com>
335 * Daniele Sluijters <github@daenney.net>
336 * Daniel Paulus <daniel@inuits.eu>
337 * Wolf Noble <wolf@wolfspyre.com>