README: Add highlighting for code blocks.
[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, **we urge you NOT to use short keys**, 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::params`: Sets defaults for the apt module parameters.
45
46 * `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 `true`, the update runs on every Puppet run.
47
48 ### Types
49
50 * `apt_key`
51
52   A native Puppet type and provider for managing GPG keys for Apt is provided by this module.
53
54   ```puppet
55   apt_key { 'puppetlabs':
56     ensure => 'present',
57     id     => '1054B7A24BD6EC30',
58   }
59   ```
60
61   You can additionally set the following attributes:
62
63    * `source`: HTTP, HTTPS or FTP location of a GPG key or path to a file on the target host.
64    * `content`: Instead of pointing to a file, pass the key in as a string.
65    * `server`: The GPG key server to use. It defaults to *keyserver.ubuntu.com*.
66    * `options`: Additional options to pass to `apt-key`'s `--keyserver-options`.
67
68 ### Defined Types
69
70 * `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.
71
72 * `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.
73
74   ```puppet
75   apt::key { 'puppetlabs':
76     id     => '1054B7A24BD6EC30',
77     server => 'pgp.mit.edu',
78   }
79
80   apt::key { 'jenkins':
81     id     => '9B7D32F2D50582E6',
82     source => 'http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key',
83   }
84   ```
85
86 * `apt::pin`: Defined type that adds an Apt pin for a certain release.
87
88   ```puppet
89   apt::pin { 'karmic': priority => 700 }
90   apt::pin { 'karmic-updates': priority => 700 }
91   apt::pin { 'karmic-security': priority => 700 }
92   ```
93
94   Note that you can also specify more complex pins using distribution properties.
95
96   ```puppet
97   apt::pin { 'stable':
98     priority        => -10,
99     originator      => 'Debian',
100     release_version => '3.0',
101     component       => 'main',
102     label           => 'Debian'
103   }
104   ```  
105
106   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.
107
108 * `apt::ppa`: Adds a PPA repository using `add-apt-repository`. For example, `apt::ppa { 'ppa:drizzle-developers/ppa': }`.
109
110 * `apt::setting`: Defined type to abstract the creation of Apt configuration files.
111
112 * `apt::source`: Adds an Apt source to `/etc/apt/sources.list.d/`. For example:
113
114   ```puppet
115   apt::source { 'debian_unstable':
116     comment  => 'This is the iWeb Debian unstable mirror',
117     location => 'http://debian.mirror.iweb.ca/debian/',
118     release  => 'unstable',
119     repos    => 'main contrib non-free',
120     pin      => '-10',
121     key      => {
122       'id'     => '8B48AD6246925553',
123       'server' => 'subkeys.pgp.net',
124     },
125     include  => {
126       'src' => true,
127       'deb' => true,
128     },
129   }
130   ```  
131
132   For example, to configure your system so the source is the Puppet Labs Apt repository:
133
134   ```puppet
135   apt::source { 'puppetlabs':
136     location => 'http://apt.puppetlabs.com',
137     repos    => 'main',
138     key      => {
139       'id'     => '1054B7A24BD6EC30',
140       'server' => 'pgp.mit.edu',
141     },
142   ```
143
144 ### Facts
145
146 The apt module includes a few facts to describe the state of the Apt system:
147
148 * `apt_updates`: The number of updates available on the system
149 * `apt_security_updates`: The number of updates which are security updates
150 * `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.
151 * `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.
152
153 **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.
154
155 #### Hiera example
156
157 ```yaml
158 apt::sources:
159   'debian_unstable':
160     location: 'http://debian.mirror.iweb.ca/debian/'
161     release: 'unstable'
162     repos: 'main contrib non-free'
163     key:
164       id: '9AA38DCD55BE302B'
165       server: 'subkeys.pgp.net'
166     pin: '-10'
167     include:
168       src: true
169       deb: true
170
171   'puppetlabs':
172     location: 'http://apt.puppetlabs.com'
173     repos: 'main'
174     key:
175       id:'1054B7A24BD6EC30'
176       server: 'pgp.mit.edu'
177 ```
178
179 ### Parameters
180
181 #### apt
182
183 * `update`: Hash to configure various update settings. Valid keys are:
184   * 'frequency': The run frequency for `apt-get update`. Defaults to 'reluctantly'. Accepts the following values:
185     * 'always': Runs update at every Puppet run.
186     * '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. 
187     * '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. 
188     * 'reluctantly': Only runs `apt-get update` if the exec resource `apt_update` is notified. This is the default setting.  
189   * 'timeout': Overrides the exec timeout in seconds for `apt-get update`. Defaults to exec default (300).
190   * '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.
191 * `purge`: Hash to configure various purge settings. Valid keys are:
192   * 'sources.list': If set to 'true', Puppet purges all unmanaged entries from sources.list. Accepts `true` or `false`. Defaults to `true`.
193   * 'sources.list.d': If set to 'true', Puppet purges all unmanaged entries from sources.list.d. Accepts `true` or `false`. Defaults to `true`.
194   * 'preferences.list': If set to 'true', Puppet purges all unmanaged entries from preferences.list. Accepts `true` or `false`. Defaults to `true`.
195   * 'preferences.list.d': If set to 'true', Puppet purges all unmanaged entries from preferences.list.d. Accepts `true` or `false`. Defaults to `true`.
196 * `proxy`: Hash to configure various proxy settings. Valid keys are:
197   * 'host': Configures a proxy host and stores the configuration in /etc/apt/apt.conf.d/01proxy.
198   * 'port': Configures a proxy port and stores the configuration in /etc/apt/apt.conf.d/01proxy.
199   * 'https': Boolean to configure whether or not to enable https proxies. Defaults to false.
200 * `keys`: Passes a hash to create_resource to make new `apt::key` resources.
201 * `ppas`: Passes a hash to create_resource to make new `apt::ppa` resources.
202 * `settings`: Passes a hash to create_resource to make new `apt::setting` resources.
203 * `sources`: Passes a hash to create_resource to make new `apt::source` resources.
204
205 ####apt::conf
206
207 * `content`: The content of the configuration file.
208 * `ensure`: Whether the configuration file should be 'present' or 'absent'. Defaults to 'present'.
209 * `priority`: Numeric priority for the configuration file. Defaults to '50'.
210
211 ####apt::key
212
213 * `ensure`: The state we want this key in. Can be 'present' or 'absent'.
214 * `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.
215 * `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.
216 * `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).
217 * `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'.
218 * `options`: Additional options to pass on to `apt-key adv --keyserver-options`.
219
220 ####apt::pin
221
222 * `ensure`: The state we want this pin in. Can be 'present' or 'absent'.
223 * `explanation`: Add a comment. Defaults to `${caller_module_name}: ${name}`.
224 * `order`: The order of the file name. Defaults to undef, otherwise must be an integer.
225 * `packages`: The list of packages to pin. Defaults to '\*'. Can be an array or string. 
226 * `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.
227 * `release`: The Debian release. Defaults to ''. Typical values can be 'stable', 'testing' and 'unstable'.
228 * `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 ''.
229 * `version`: The specific form assigns a priority (a "Pin-Priority") to one or more specified packages with a specified version or version range.
230 * `codename`: The distribution (lsbdistcodename) of the apt repository. Defaults to ''.
231 * `release_version`: Names the release version. For example, the packages in the tree might belong to Debian release version 7. Defaults to ''.
232 * `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'
233 * `originator`: Names the originator of the packages in the directory tree of the Release file. Defaults to ''. Most commonly, this is Debian.
234 * `label`: Names the label of the packages in the directory tree of the Release file. Defaults to ''. Most commonly, this is Debian.
235
236 **Note**: Parameters release, origin, and version are mutually exclusive.
237
238 It is recommended to read the manpage 'apt_preferences(5)'
239
240 ####apt::ppa
241
242 * `ensure`: Whether to add or remove the PPA. Valid values are 'present' or 'absent'. Defaults to 'present'.
243 * `options`: Options to pass to `add-apt-repository`. OS-dependent defaults are defined in `apt::params`.
244 * `release`: OS-release, used in the filename of the generated sources.list.d file. Defaults to `$::lsbdistcodename`.
245 * `package_name`: The package to install `add-apt-repository`. OS-dependent defaults are defined in `apt::params`.
246 * `package_manage`: Whether or not to manage the package for `add-apt-repository`. Defaults to false.
247
248 ####apt::setting
249
250 * `priority`: Integer or zero-padded integer setting the file priority. Defaults to 50.
251 * `ensure`: Whether to add or remove the file. Valid values are 'present', 'absent', and 'file'. Defaults to `file`.
252 * `source`: The source for the file. Exactly one of `content` and `source` must be specified.
253 * `content`: The content for the file. Exactly one of `content` and `source` must be specified.
254 * `notify_update`: Boolean for whether or not this `apt::setting` should trigger an `apt-get update`. Defaults to `true`.
255
256 ####apt::source
257
258 * `comment`: Add a comment to the apt source file.
259 * `ensure`: Allows you to remove the apt source file. Can be 'present' or 'absent'.
260 * `location`: The URL of the apt repository. Defaults to undef. Required unless `ensure => 'absent'`.
261 * `release`: The distribution of the apt repository. Defaults to fact 'lsbdistcodename'.
262 * `repos`: The component of the apt repository. This defaults to 'main'.
263 * `include`: Hash to configure include options. Valid keys are:
264   * 'deb': References a Debian distribution's binary package. Defaults to `true`.
265   * '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`.
266 * `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:
267   * 'id': See `id` in `apt::key`. Required if a hash is specified.
268   * 'server': See `server` in `apt::key`
269   * 'content': See `content` in `apt::key`
270   * 'source': See `source` in `apt::key`
271   * 'options': See `options` in `apt::key`
272 * `pin`: See apt::pin. Defaults to false.
273 * `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'.
274 * `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`.
275
276 Limitations
277 -----------
278
279 This module should work across all versions of Debian/Ubuntu and support all major Apt repository management features.
280
281 Development
282 ------------
283
284 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.
285
286 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.
287
288 You can read the complete module contribution guide [on the Puppet Labs wiki.](http://projects.puppetlabs.com/projects/module-site/wiki/Module_contributing)
289
290 License
291 -------
292
293 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.
294
295 The LICENSE contains both licenses.
296
297 Contributors
298 ------------
299
300 A lot of great people have contributed to this module. A somewhat current list follows:
301
302 * Ben Godfrey <ben.godfrey@wonga.com>
303 * Branan Purvine-Riley <branan@puppetlabs.com>
304 * Christian G. Warden <cwarden@xerus.org>
305 * Dan Bode <bodepd@gmail.com> <dan@puppetlabs.com>
306 * Daniel Tremblay <github@danieltremblay.ca>
307 * Garrett Honeycutt <github@garretthoneycutt.com>
308 * Jeff Wallace <jeff@evolvingweb.ca> <jeff@tjwallace.ca>
309 * Ken Barber <ken@bob.sh>
310 * Matthaus Litteken <matthaus@puppetlabs.com> <mlitteken@gmail.com>
311 * Matthias Pigulla <mp@webfactory.de>
312 * Monty Taylor <mordred@inaugust.com>
313 * Peter Drake <pdrake@allplayers.com>
314 * Reid Vandewiele <marut@cat.pdx.edu>
315 * Robert Navarro <rnavarro@phiivo.com>
316 * Ryan Coleman <ryan@puppetlabs.com>
317 * Scott McLeod <scott.mcleod@theice.com>
318 * Spencer Krum <spencer@puppetlabs.com>
319 * William Van Hevelingen <blkperl@cat.pdx.edu> <wvan13@gmail.com>
320 * Zach Leslie <zach@puppetlabs.com>
321 * Daniele Sluijters <github@daenney.net>
322 * Daniel Paulus <daniel@inuits.eu>
323 * Wolf Noble <wolf@wolfspyre.com>