forked from evolvingweb/puppet-apt
-
Notifications
You must be signed in to change notification settings - Fork 461
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(MODULES-4973) rip out data in modules
this module is not able to find a value for `$keyserver` when it is included in postgresql, as stated in the ticket. this changes the module back to using the params.pp model. we can revisit data in modules once LTS moves up from 4.7.0. for now, we need the compatibility.
- Loading branch information
Showing
11 changed files
with
158 additions
and
86 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
class apt::params { | ||
|
||
if $::osfamily != 'Debian' { | ||
fail('This module only works on Debian or derivatives like Ubuntu') | ||
} | ||
|
||
$root = '/etc/apt' | ||
$provider = '/usr/bin/apt-get' | ||
$sources_list = "${root}/sources.list" | ||
$sources_list_d = "${root}/sources.list.d" | ||
$conf_d = "${root}/apt.conf.d" | ||
$preferences = "${root}/preferences" | ||
$preferences_d = "${root}/preferences.d" | ||
$keyserver = 'keyserver.ubuntu.com' | ||
$confs = {} | ||
$update = {} | ||
$purge = {} | ||
$proxy = {} | ||
$sources = {} | ||
$keys = {} | ||
$ppas = {} | ||
$pins = {} | ||
$settings = {} | ||
|
||
$config_files = { | ||
'conf' => { | ||
'path' => $conf_d, | ||
'ext' => '', | ||
}, | ||
'pref' => { | ||
'path' => $preferences_d, | ||
'ext' => '.pref', | ||
}, | ||
'list' => { | ||
'path' => $sources_list_d, | ||
'ext' => '.list', | ||
} | ||
} | ||
|
||
$update_defaults = { | ||
'frequency' => 'reluctantly', | ||
'timeout' => undef, | ||
'tries' => undef, | ||
} | ||
|
||
$proxy_defaults = { | ||
'ensure' => undef, | ||
'host' => undef, | ||
'port' => 8080, | ||
'https' => false, | ||
} | ||
|
||
$purge_defaults = { | ||
'sources.list' => false, | ||
'sources.list.d' => false, | ||
'preferences' => false, | ||
'preferences.d' => false, | ||
} | ||
|
||
$source_key_defaults = { | ||
'server' => $keyserver, | ||
'options' => undef, | ||
'content' => undef, | ||
'source' => undef, | ||
} | ||
|
||
$include_defaults = { | ||
'deb' => true, | ||
'src' => false, | ||
} | ||
|
||
case $facts['os']['name']{ | ||
'Debian': { | ||
case $facts['os']['release']['full'] { | ||
'6.0': { | ||
$backports = { | ||
'location' => 'http://httpredir.debian.org/debian-backports', | ||
'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553', | ||
'repos' => 'main contrib non-free', | ||
} | ||
} | ||
default: { | ||
$backports = { | ||
'location' => 'http://httpredir.debian.org/debian', | ||
'key' => 'A1BD8E9D78F7FE5C3E65D8AF8B48AD6246925553', | ||
'repos' => 'main contrib non-free', | ||
} | ||
} | ||
} | ||
|
||
$ppa_options = undef | ||
$ppa_package = undef | ||
|
||
} | ||
'Ubuntu': { | ||
$backports = { | ||
'location' => 'http://archive.ubuntu.com/ubuntu', | ||
'key' => '630239CC130E1A7FD81A27B140976EAF437D05B5', | ||
'repos' => 'main universe multiverse restricted', | ||
} | ||
|
||
case $facts['os']['release']['full'] { | ||
'10.04': { | ||
$ppa_options = undef | ||
$ppa_package = 'python-software-properties' | ||
} | ||
'12.04': { | ||
$ppa_options = '-y' | ||
$ppa_package = 'python-software-properties' | ||
} | ||
'14.04', '14.10', '15.04', '15.10': { | ||
$ppa_options = '-y' | ||
$ppa_package = 'software-properties-common' | ||
} | ||
default: { | ||
$ppa_options = '-y' | ||
$ppa_package = 'python-software-properties' | ||
} | ||
} | ||
} | ||
undef: { | ||
fail('Unable to determine full release number') | ||
} | ||
default: { | ||
$ppa_options = undef | ||
$ppa_package = undef | ||
$backports = undef | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters