summaryrefslogtreecommitdiff
path: root/manifests/centos.pp
blob: b53469bced80df9221740f92ef3c3ef1c78115d6 (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';
    }
}