]> gitweb.fluxo.info Git - puppet-apt.git/commitdiff
May disable apt::proxy_client
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 23 Dec 2013 18:01:47 +0000 (16:01 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 23 Dec 2013 18:01:47 +0000 (16:01 -0200)
manifests/proxy_client.pp

index 9ba79f235384fea04c14f6d6b28211d5fece6e26..0a14322e91808676fd4bac3a9747c700a04be28a 100644 (file)
@@ -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,
   }
 }