aboutsummaryrefslogtreecommitdiff
path: root/manifests/proxy_client.pp
blob: 61e3b9781d30ede04fb60b8abe4738c87b40dc0e (plain)
1
2
3
4
5
6
7
8
9
10
11
class apt::proxy_client(
  $proxy = 'http://localhost',
  $port = '3142',
  $ensure = 'present',
){

  apt_conf { '20proxy':
    content => template('apt/20proxy.erb'),
    ensure  => $ensure,
  }
}