blob: 9772817aca6cb595834249560039a636ca380987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# manifests/init.pp - manage lighttpd stuff
# Copyright (C) 2007 admin@immerda.ch
# GPLv3
class lighttpd {
case $operatingsystem {
debian,ubuntu: { include lighttpd::debian }
default: { include lighttpd::base }
}
if $use_shorewall {
include shorewall::rules::http
}
if $use_munin {
include lighttpd::munin
}
}
|