X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=manifests%2Finit.pp;h=597774c8338775a56e1e64c1d3a03ffe8ceb59ce;hb=60e50a9b65dec94fe20734404295e28d9e434a83;hp=23197719500809e6b4d1e5c4b4aa5ad87fdf7feb;hpb=aacce08bcf16b5582996c5d5aafc32ac59479120;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/init.pp b/manifests/init.pp index 2319771..597774c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -12,6 +12,11 @@ # true, Puppet will purge all unmanaged entries from sources.list # purge_sources_list_d - Accepts true or false. Defaults to false. If set # to true, Puppet will purge all unmanaged entries from sources.list.d +# update_timeout - Overrides the exec timeout in seconds for apt-get update. +# If not set defaults to Exec's default (300) +# update_tries - Number of times that `apt-get update` will be tried. Use this +# to work around transient DNS and HTTP errors. By default, the command +# will only be run once. # # Actions: # @@ -23,17 +28,27 @@ class apt( $always_apt_update = false, $disable_keys = undef, - $proxy_host = false, + $proxy_host = undef, $proxy_port = '8080', $purge_sources_list = false, $purge_sources_list_d = false, - $purge_preferences_d = false + $purge_preferences = false, + $purge_preferences_d = false, + $update_timeout = undef, + $update_tries = undef, + $sources = undef, + $fancy_progress = undef ) { + if $::osfamily != 'Debian' { + fail('This module only works on Debian or derivatives like Ubuntu') + } + include apt::params include apt::update - validate_bool($purge_sources_list, $purge_sources_list_d, $purge_preferences_d) + validate_bool($purge_sources_list, $purge_sources_list_d, + $purge_preferences, $purge_preferences_d) $sources_list_content = $purge_sources_list ? { false => undef, @@ -72,6 +87,13 @@ class apt( notify => Exec['apt_update'], } + if $purge_preferences { + file { 'apt-preferences': + ensure => absent, + path => "${root}/preferences", + } + } + file { 'preferences.d': ensure => directory, path => $preferences_d, @@ -81,6 +103,24 @@ class apt( recurse => $purge_preferences_d, } + case $fancy_progress { + true: { + file { '99progressbar': + ensure => present, + content => 'Dpkg::Progress-Fancy "1";', + path => "${apt_conf_d}/99progressbar", + } + } + false: { + file { '99progressbar': + ensure => absent, + path => "${apt_conf_d}/99progressbar", + } + } + undef: {} # do nothing + default: { fail('Valid values for fancy_progress are true or false') } + } + case $disable_keys { true: { file { '99unauth': @@ -100,19 +140,34 @@ class apt( } $proxy_set = $proxy_host ? { - false => absent, + undef => absent, default => present } - file { 'configure-apt-proxy': + file { '01proxy': + ensure => $proxy_set, + path => "${apt_conf_d}/01proxy", + content => "Acquire::http::Proxy \"http://${proxy_host}:${proxy_port}\";\n", + notify => Exec['apt_update'], + mode => '0644', + owner => root, + group => root, + } + + file { 'old-proxy-file': + ensure => absent, path => "${apt_conf_d}/proxy", - content => "Acquire::http::Proxy \"http://${proxy_host}:${proxy_port}\";", notify => Exec['apt_update'], - ensure => $proxy_set, } # Need anchor to provide containment for dependencies. anchor { 'apt::update': require => Class['apt::update'], } + + # manage sources if present + if $sources != undef { + validate_hash($sources) + create_resources('apt::source', $sources) + } }