aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-12-23 16:01:47 -0200
committerSilvio Rhatto <rhatto@riseup.net>2013-12-23 16:01:47 -0200
commite5632b2e495f1f7190679f0fc21e8fd0ab645314 (patch)
tree3fedfb581f5f184a7b271aad517e4532b45ba73f
parent12fb8ae865268492a95fa781bd6c5d83ec96d3ee (diff)
downloadpuppet-apt-e5632b2e495f1f7190679f0fc21e8fd0ab645314.tar.gz
puppet-apt-e5632b2e495f1f7190679f0fc21e8fd0ab645314.tar.bz2
May disable apt::proxy_client
-rw-r--r--manifests/proxy_client.pp2
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/proxy_client.pp b/manifests/proxy_client.pp
index 9ba79f2..0a14322 100644
--- a/manifests/proxy_client.pp
+++ b/manifests/proxy_client.pp
@@ -1,9 +1,11 @@
class apt::proxy_client(
$proxy = 'http://localhost',
$port = '3142',
+ $ensure = 'present',
){
apt_conf { '20proxy':
content => template('apt/20proxy.erb'),
+ ensure => ensure,
}
}