aboutsummaryrefslogtreecommitdiff
path: root/manifests/proxy_client.pp
blob: 0a14322e91808676fd4bac3a9747c700a04be28a (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,
  }
}