Merge pull request #445 from mhaskel/updates_everywhere
[puppet-modules/puppetlabs-apt.git] / manifests / params.pp
1 class apt::params {
2
3   if $caller_module_name and $caller_module_name != $module_name {
4     fail('apt::params is a private class and cannot be accessed directly')
5   }
6
7   $root           = '/etc/apt'
8   $provider       = '/usr/bin/apt-get'
9   $sources_list   = "${root}/sources.list"
10   $sources_list_d = "${root}/sources.list.d"
11   $conf_d         = "${root}/apt.conf.d"
12   $preferences    = "${root}/preferences"
13   $preferences_d  = "${root}/preferences.d"
14
15   if $::osfamily != 'Debian' {
16     fail('This module only works on Debian or derivatives like Ubuntu')
17   }
18
19   $config_files = {
20     'conf'   => {
21       'path' => $conf_d,
22       'ext'  => '',
23     },
24     'pref'   => {
25       'path' => $preferences_d,
26       'ext'  => '',
27     },
28     'list'   => {
29       'path' => $sources_list_d,
30       'ext'  => '.list',
31     }
32   }
33
34   $proxy = {
35     'host' => undef,
36     'port' => 8080,
37   }
38
39   $file_defaults = {
40     'owner' => 'root',
41     'group' => 'root',
42     'mode'  => '0644',
43   }
44
45   case $::lsbdistid {
46     'ubuntu', 'debian': {
47       $distid = $::lsbdistid
48       $distcodename = $::lsbdistcodename
49     }
50     'linuxmint': {
51       if $::lsbdistcodename == 'debian' {
52         $distid = 'debian'
53         $distcodename = 'wheezy'
54       } else {
55         $distid = 'ubuntu'
56         $distcodename = $::lsbdistcodename ? {
57           'qiana'  => 'trusty',
58           'petra'  => 'saucy',
59           'olivia' => 'raring',
60           'nadia'  => 'quantal',
61           'maya'   => 'precise',
62         }
63       }
64     }
65     '': {
66       fail('Unable to determine lsbdistid, is lsb-release installed?')
67     }
68     default: {
69       fail("Unsupported lsbdistid (${::lsbdistid})")
70     }
71   }
72   case $distid {
73     'ubuntu': {
74       case $distcodename {
75         'lucid': {
76           $ppa_options        = undef
77           $ppa_package        = 'python-software-properties'
78         }
79         'precise': {
80           $ppa_options        = '-y'
81           $ppa_package        = 'python-software-properties'
82         }
83         'trusty', 'utopic', 'vivid': {
84           $ppa_options        = '-y'
85           $ppa_package        = 'software-properties-common'
86         }
87         default: {
88           $ppa_options        = '-y'
89           $ppa_package        = 'software-properties-common'
90         }
91       }
92     }
93   }
94 }