X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=manifests%2Finit.pp;h=23197719500809e6b4d1e5c4b4aa5ad87fdf7feb;hb=ffb89f6d5d806a27ad43129f5e74fdd7033bd2f3;hp=b8e356c53ae8a3aa09b7427a96065189b1389158;hpb=69262bfcb329e3126477f8308fd6057c15161ba6;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/manifests/init.pp b/manifests/init.pp index b8e356c..2319771 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -99,12 +99,16 @@ class apt( default: { fail('Valid values for disable_keys are true or false') } } - if ($proxy_host) { - file { 'configure-apt-proxy': - path => "${apt_conf_d}/proxy", - content => "Acquire::http::Proxy \"http://${proxy_host}:${proxy_port}\";", - notify => Exec['apt_update'], - } + $proxy_set = $proxy_host ? { + false => absent, + default => present + } + + file { 'configure-apt-proxy': + 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.