704311061b6df0e7f6d649c70721554e29d84ad1
[puppet-modules/puppetlabs-apt.git] / manifests / init.pp
1 # @summary Main class, includes all other classes.
2 #
3 # @see https://docs.puppetlabs.com/references/latest/function.html#createresources for the create resource function
4 #
5 # @param provider
6 #   Specifies the provider that should be used by apt::update.
7 #
8 # @param keyserver
9 #   Specifies a keyserver to provide the GPG key. Valid options: a string containing a domain name or a full URL (http://, https://, or
10 #   hkp://).
11 #
12 # @param key_options
13 #   Specifies the default options for apt::key resources.
14 #
15 # @param ppa_options
16 #   Supplies options to be passed to the `add-apt-repository` command.
17 #
18 # @param ppa_package
19 #   Names the package that provides the `apt-add-repository` command.
20 #
21 # @param backports
22 #   Specifies some of the default parameters used by apt::backports. Valid options: a hash made up from the following keys:
23 #
24 # @option backports [String] :location
25 #   See apt::backports for documentation.
26 #
27 # @option backports [String] :repos
28 #   See apt::backports for documentation.
29 #
30 # @option backports [String] :key
31 #   See apt::backports for documentation.
32 #
33 # @param confs
34 #   Creates new `apt::conf` resources. Valid options: a hash to be passed to the create_resources function linked above.
35 #
36 # @param update
37 #   Configures various update settings. Valid options: a hash made up from the following keys:
38 #
39 # @option update [String] :frequency
40 #   Specifies how often to run `apt-get update`. If the exec resource `apt_update` is notified, `apt-get update` runs regardless of this value.
41 #   Valid options: 'always' (at every Puppet run); 'daily' (if the value of `apt_update_last_success` is less than current epoch time minus 86400);
42 #   'weekly' (if the value of `apt_update_last_success` is less than current epoch time minus 604800); and 'reluctantly' (only if the exec resource
43 #   `apt_update` is notified). Default: 'reluctantly'.
44 #
45 # @option update [Integer] :loglevel
46 #   Specifies the log level of logs outputted to the console. Default: undef.
47 #
48 # @option update [Integer] :timeout
49 #   Specifies how long to wait for the update to complete before canceling it. Valid options: an integer, in seconds. Default: undef.
50 #
51 # @option update [Integer] :tries
52 #    Specifies how many times to retry the update after receiving a DNS or HTTP error. Default: undef.
53 #
54 # @param purge
55 #   Specifies whether to purge any existing settings that aren't managed by Puppet. Valid options: a hash made up from the following keys:
56 #
57 # @option purge [Boolean] :sources.list
58 #   Specifies whether to purge any unmanaged entries from sources.list. Default false.
59 #
60 # @option purge [Boolean] :sources.list.d
61 #   Specifies whether to purge any unmanaged entries from sources.list.d. Default false.
62 #
63 # @option purge [Boolean] :preferences
64 #   Specifies whether to purge any unmanaged entries from preferences. Default false.
65 #
66 # @option purge [Boolean] :preferences.d.
67 #   Specifies whether to purge any unmanaged entries from preferences.d. Default false.
68 #
69 # @param proxy
70 #   Configures Apt to connect to a proxy server. Valid options: a hash matching the locally defined type apt::proxy.
71 #
72 # @param sources
73 #   Creates new `apt::source` resources. Valid options: a hash to be passed to the create_resources function linked above.
74 #
75 # @param keys
76 #   Creates new `apt::key` resources. Valid options: a hash to be passed to the create_resources function linked above.
77 #
78 # @param ppas
79 #   Creates new `apt::ppa` resources. Valid options: a hash to be passed to the create_resources function linked above.
80 #
81 # @param pins
82 #   Creates new `apt::pin` resources. Valid options: a hash to be passed to the create_resources function linked above.
83 #
84 # @param settings
85 #   Creates new `apt::setting` resources. Valid options: a hash to be passed to the create_resources function linked above.
86 #
87 # @param manage_auth_conf
88 #   Specifies whether to manage the /etc/apt/auth.conf file. When true, the file will be overwritten with the entries specified in
89 #   the auth_conf_entries parameter. When false, the file will be ignored (note that this does not set the file to absent.
90 #
91 # @param auth_conf_entries
92 #   An optional array of login configuration settings (hashes) that are recorded in the file /etc/apt/auth.conf. This file has a netrc-like
93 #   format (similar to what curl uses) and contains the login configuration for APT sources and proxies that require authentication. See
94 #   https://manpages.debian.org/testing/apt/apt_auth.conf.5.en.html for details. If specified each hash must contain the keys machine, login and
95 #   password and no others. Specifying manage_auth_conf and not specifying this parameter will set /etc/apt/auth.conf to absent.
96 #
97 # @param auth_conf_owner
98 #   The owner of the file /etc/apt/auth.conf. Default: '_apt' or 'root' on old releases.
99 #
100 # @param root
101 #   Specifies root directory of Apt executable.
102 #
103 # @param sources_list
104 #   Specifies the path of the sources_list file to use.
105 #
106 # @param sources_list_d
107 #   Specifies the path of the sources_list.d file to use.
108 #
109 # @param conf_d
110 #   Specifies the path of the conf.d file to use.
111 #
112 # @param preferences
113 #   Specifies the path of the preferences file to use.
114 #
115 # @param preferences_d
116 #   Specifies the path of the preferences.d file to use.
117 #
118 # @param config_files
119 #   A hash made up of the various configuration files used by Apt.
120 #
121 # @param sources_list_force
122 #   Specifies whether to perform force purge or delete. Default false.
123 #
124 class apt (
125   Hash $update_defaults         = $apt::params::update_defaults,
126   Hash $purge_defaults          = $apt::params::purge_defaults,
127   Hash $proxy_defaults          = $apt::params::proxy_defaults,
128   Hash $include_defaults        = $apt::params::include_defaults,
129   String $provider              = $apt::params::provider,
130   String $keyserver             = $apt::params::keyserver,
131   Optional[String] $key_options = $apt::params::key_options,
132   Optional[String] $ppa_options = $apt::params::ppa_options,
133   Optional[String] $ppa_package = $apt::params::ppa_package,
134   Optional[Hash] $backports     = $apt::params::backports,
135   Hash $confs                   = $apt::params::confs,
136   Hash $update                  = $apt::params::update,
137   Hash $purge                   = $apt::params::purge,
138   Apt::Proxy $proxy             = $apt::params::proxy,
139   Hash $sources                 = $apt::params::sources,
140   Hash $keys                    = $apt::params::keys,
141   Hash $ppas                    = $apt::params::ppas,
142   Hash $pins                    = $apt::params::pins,
143   Hash $settings                = $apt::params::settings,
144   Boolean $manage_auth_conf     = $apt::params::manage_auth_conf,
145   Array[Apt::Auth_conf_entry]
146   $auth_conf_entries            = $apt::params::auth_conf_entries,
147   String $auth_conf_owner       = $apt::params::auth_conf_owner,
148   String $root                  = $apt::params::root,
149   String $sources_list          = $apt::params::sources_list,
150   String $sources_list_d        = $apt::params::sources_list_d,
151   String $conf_d                = $apt::params::conf_d,
152   String $preferences           = $apt::params::preferences,
153   String $preferences_d         = $apt::params::preferences_d,
154   String $apt_conf_d            = $apt::params::apt_conf_d,
155   Hash $config_files            = $apt::params::config_files,
156   Boolean $sources_list_force   = $apt::params::sources_list_force,
157
158   Hash $source_key_defaults = {
159     'server'  => $keyserver,
160     'options' => undef,
161     'content' => undef,
162     'source'  => undef,
163   }
164
165 ) inherits apt::params {
166   if $facts['os']['family'] != 'Debian' {
167     fail('This module only works on Debian or derivatives like Ubuntu')
168   }
169
170   if $update['frequency'] {
171     assert_type(
172       Enum['always','daily','weekly','reluctantly'],
173       $update['frequency'],
174     )
175   }
176   if $update['timeout'] {
177     assert_type(Integer, $update['timeout'])
178   }
179   if $update['tries'] {
180     assert_type(Integer, $update['tries'])
181   }
182
183   $_update = merge($::apt::update_defaults, $update)
184   include ::apt::update
185
186   if $purge['sources.list'] {
187     assert_type(Boolean, $purge['sources.list'])
188   }
189   if $purge['sources.list.d'] {
190     assert_type(Boolean, $purge['sources.list.d'])
191   }
192   if $purge['preferences'] {
193     assert_type(Boolean, $purge['preferences'])
194   }
195   if $purge['preferences.d'] {
196     assert_type(Boolean, $purge['preferences.d'])
197   }
198   if $sources_list_force {
199     assert_type(Boolean, $sources_list_force)
200   }
201   if $purge['apt.conf.d'] {
202     assert_type(Boolean, $purge['apt.conf.d'])
203   }
204
205   $_purge = merge($::apt::purge_defaults, $purge)
206
207   if $proxy['perhost'] {
208     $_perhost = $proxy['perhost'].map |$item| {
209       $_item = merge($apt::proxy_defaults, $item)
210       $_scheme = $_item['https'] ? {
211         true    => 'https',
212         default => 'http' }
213       $_port = $_item['port'] ? {
214         Integer => ":${_item['port']}",
215         default => ''
216       }
217       $_target = $_item['direct'] ? {
218         true    => 'DIRECT',
219         default => "${_scheme}://${_item['host']}${_port}/" }
220       merge($item, {
221         'scheme' => $_scheme,
222         'target' => $_target })
223     }
224   } else {
225     $_perhost = {}
226   }
227
228   $_proxy = merge($apt::proxy_defaults, $proxy, { 'perhost' => $_perhost })
229
230   $confheadertmp = epp('apt/_conf_header.epp')
231   $proxytmp = epp('apt/proxy.epp', { 'proxies' => $_proxy })
232   $updatestamptmp = epp('apt/15update-stamp.epp')
233
234   if $_proxy['ensure'] == 'absent' or $_proxy['host'] {
235     apt::setting { 'conf-proxy':
236       ensure   => $_proxy['ensure'],
237       priority => '01',
238       content  => "${confheadertmp}${proxytmp}",
239     }
240   }
241
242   if $sources_list_force {
243     $sources_list_ensure = $_purge['sources.list'] ? {
244       true    => absent,
245       default  => file,
246     }
247     $sources_list_content = $_purge['sources.list'] ? {
248       true    => nil,
249       default => undef,
250     }
251   } else {
252     $sources_list_ensure = $_purge['sources.list'] ? {
253       true    => file,
254       default => file,
255     }
256     $sources_list_content = $_purge['sources.list'] ? {
257       true    => "# Repos managed by puppet.\n",
258       default => undef,
259     }
260     }
261
262   $preferences_ensure = $_purge['preferences'] ? {
263     true    => absent,
264     default => file,
265   }
266
267   apt::setting { 'conf-update-stamp':
268     priority => 15,
269     content  => "${confheadertmp}${updatestamptmp}",
270   }
271
272   file { 'sources.list':
273     ensure  => $sources_list_ensure,
274     path    => $::apt::sources_list,
275     owner   => root,
276     group   => root,
277     content => $sources_list_content,
278     notify  => Class['apt::update'],
279   }
280
281   file { 'sources.list.d':
282     ensure  => directory,
283     path    => $::apt::sources_list_d,
284     owner   => root,
285     group   => root,
286     purge   => $_purge['sources.list.d'],
287     recurse => $_purge['sources.list.d'],
288     notify  => Class['apt::update'],
289   }
290
291   file { 'preferences':
292     ensure => $preferences_ensure,
293     path   => $::apt::preferences,
294     owner  => root,
295     group  => root,
296     notify => Class['apt::update'],
297   }
298
299   file { 'preferences.d':
300     ensure  => directory,
301     path    => $::apt::preferences_d,
302     owner   => root,
303     group   => root,
304     purge   => $_purge['preferences.d'],
305     recurse => $_purge['preferences.d'],
306     notify  => Class['apt::update'],
307   }
308
309   file { 'apt.conf.d':
310     ensure  => directory,
311     path    => $::apt::apt_conf_d,
312     owner   => root,
313     group   => root,
314     purge   => $_purge['apt.conf.d'],
315     recurse => $_purge['apt.conf.d'],
316     notify  => Class['apt::update'],
317   }
318
319   if $confs {
320     create_resources('apt::conf', $confs)
321   }
322   # manage sources if present
323   if $sources {
324     create_resources('apt::source', $sources)
325   }
326   # manage keys if present
327   if $keys {
328     create_resources('apt::key', $keys)
329   }
330   # manage ppas if present
331   if $ppas {
332     create_resources('apt::ppa', $ppas)
333   }
334   # manage settings if present
335   if $settings {
336     create_resources('apt::setting', $settings)
337   }
338
339   if $manage_auth_conf {
340     $auth_conf_ensure = $auth_conf_entries ? {
341       []      => 'absent',
342       default => 'present',
343     }
344
345     $auth_conf_tmp = epp('apt/auth_conf.epp')
346
347     file { '/etc/apt/auth.conf':
348       ensure  => $auth_conf_ensure,
349       owner   => $auth_conf_owner,
350       group   => 'root',
351       mode    => '0600',
352       content => Sensitive("${confheadertmp}${auth_conf_tmp}"),
353       notify  => Class['apt::update'],
354     }
355   }
356
357   # manage pins if present
358   if $pins {
359     create_resources('apt::pin', $pins)
360   }
361
362   case $facts['os']['name'] {
363     'Debian': {
364       if versioncmp($facts['os']['release']['major'], '9') >= 0 {
365         ensure_packages(['gnupg'])
366       }
367     }
368     'Ubuntu': {
369       if versioncmp($facts['os']['release']['full'], '17.04') >= 0 {
370         ensure_packages(['gnupg'])
371       }
372     }
373     default: {
374       # Nothing in here
375     }
376   }
377 }