From: Daniel Friesen Date: Fri, 11 Jul 2014 21:33:15 +0000 (-0700) Subject: Fix mistake in my 0c2329b implementation. X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=fd7a1dd82e612de2d9ee1b395654dc101a593884;p=puppet-modules%2Fpuppetlabs-apt.git Fix mistake in my 0c2329b implementation. --- diff --git a/manifests/init.pp b/manifests/init.pp index c00e9c5..6165711 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -125,18 +125,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, } } }