summaryrefslogtreecommitdiff
path: root/manifests/client.pp
blob: a247a45b7e151ce2724d5153ad038d387cc2bc9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class squid_deb_proxy::client {
  package { 'squid-deb-proxy-client':
    ensure => installed,
  }

  file {'/etc/squid-deb-proxy/mirror-dstdomain.acl.d/20-custom':
    source  => [ 'puppet:///modules/site_squid_deb_proxy/mirror-dstdomain.acl.d/20-custom',
      'puppet:///modules/squid_deb_proxy/mirror-dstdomain.acl.d/20-custom' ],
    notify  => Service[ 'squid-deb-proxy' ],
    require => Package[ 'squid-deb-proxy' ],
  }

}