summaryrefslogtreecommitdiff
path: root/manifests/ssl.pp
blob: a9d8d07f389ded8fc64c795797debbbf80a8b49b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class lighttpd::ssl(
  $manage_shorewall = false,
  $manage_munin = false
) {
  class{'lighttpd':
    manage_shorewall => $manage_shorewall,
    manage_munin => $manage_munin,
  }
  lighttpd::config::file{ 'ssl': }
  if $manage_shorewall {
    include shorewall::rules::https
  }
}