summaryrefslogtreecommitdiff
path: root/manifests/init.pp
blob: 264009d9b383031c32004f45cba580e8a38b4fff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# modules/squid/manifests/init.pp - manage squid stuff
# Copyright (C) 2007 admin@immerda.ch
#

class squid (
  $manage_munin = false
) {
  case $::operatingsystem {
    gentoo: { include squid::gentoo }
    centos: { include squid::centos }
    default: { include squid::base }
  }

  if $squid::manage_munin {
    include squid::munin
  }
}