X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Fparams.pp;h=3aba99e3112b1ae68761a2f57ca149bffbb0fc98;hb=76c88af041743ac4eeab8a9662cb3e46e535e055;hp=8e4fa932b17cbe873daef887f9c7df69e1df8b9d;hpb=42af4cdc74f1b9fbe53da99ef77126274c2124c2;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/params.pp b/manifests/params.pp index 8e4fa93..3aba99e 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,21 +1,75 @@ class apt::params { $root = '/etc/apt' $provider = '/usr/bin/apt-get' + $sources_list = "${root}/sources.list" $sources_list_d = "${root}/sources.list.d" - $apt_conf_d = "${root}/apt.conf.d" + $conf_d = "${root}/apt.conf.d" + $preferences = "${root}/preferences" $preferences_d = "${root}/preferences.d" - case $lsbdistid { - 'debian': { - $backports_location = 'http://backports.debian.org/debian-backports' + if $::osfamily != 'Debian' { + fail('This module only works on Debian or derivatives like Ubuntu') + } + + $config_files = { + 'conf' => { + 'path' => $conf_d, + 'ext' => '', + }, + 'pref' => { + 'path' => $preferences_d, + 'ext' => '', + }, + 'list' => { + 'path' => $sources_list_d, + 'ext' => '.list', + } + } + + $file_defaults = { + 'owner' => 'root', + 'group' => 'root', + 'mode' => '0644', + } + + case $::lsbdistid { + 'ubuntu', 'debian': { + $distid = $::lsbdistid + $distcodename = $::lsbdistcodename } + 'linuxmint': { + if $::lsbdistcodename == 'debian' { + $distid = 'debian' + $distcodename = 'wheezy' + } else { + $distid = 'ubuntu' + $distcodename = $::lsbdistcodename ? { + 'qiana' => 'trusty', + 'petra' => 'saucy', + 'olivia' => 'raring', + 'nadia' => 'quantal', + 'maya' => 'precise', + } + } + } + '': { + fail('Unable to determine lsbdistid, is lsb-release installed?') + } + default: { + fail("Unsupported lsbdistid (${::lsbdistid})") + } + } + case $distid { 'ubuntu': { - case $lsbdistcodename { - 'hardy','lucid','maverick','natty','oneiric','precise': { - $backports_location = 'http://us.archive.ubuntu.com/ubuntu' + case $distcodename { + 'lucid': { + $ppa_options = undef + } + 'precise', 'trusty', 'utopic', 'vivid': { + $ppa_options = '-y' } default: { - $backports_location = 'http://old-releases.ubuntu.com/ubuntu' + $ppa_options = '-y' } } }