summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
blob: f481d7efc941bae286cd8248fa53b137a9c9729d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# rpms: we got the latest rpm from here:
# http://people.redhat.com/mnagy/squid/
# distro rpms seems to have problems...
class squid::centos inherits squid::base {
  file{'/etc/sysconfig/squid':
    source => [ "puppet:///modules/site_squid/sysconfig/${::fqdn}/squid",
                "puppet:///modules/site_squid/sysconfig/squid",
                "puppet:///modules/squid/sysconfig/squid" ],
     require => Package['squid'],
     notify => Service['squid'],
     owner => root, group => 0, mode => '0644';
  }
}