From: Daniel Friesen Date: Fri, 11 Jul 2014 21:33:15 +0000 (-0700) Subject: Fix mistake in my 0c2329b implementation. X-Git-Tag: 1.6.0~7^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=562e702a46fa55f54bb436aa9df4267003622fa1;p=puppet-modules%2Fpuppetlabs-apt.git Fix mistake in my 0c2329b implementation. --- diff --git a/manifests/init.pp b/manifests/init.pp index 08f62d1..1c318b6 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -144,18 +144,18 @@ class apt( file { '01proxy': ensure => absent, 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, } } default: { file { '01proxy': ensure => present, 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, } } }