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

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