summaryrefslogtreecommitdiff
path: root/manifests/ssl.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-09-28 22:20:14 +0200
committermh <mh@immerda.ch>2009-09-28 22:20:14 +0200
commitae889343b2015087d43ca2536777637dfc5f8bca (patch)
tree3fa8997532e9ccfac89e25e6247d37747ddf188c /manifests/ssl.pp
parent86aae35859dc1bceac71b6bb11be03cd3fd5d422 (diff)
downloadpuppet-lighttpd-ae889343b2015087d43ca2536777637dfc5f8bca.tar.gz
puppet-lighttpd-ae889343b2015087d43ca2536777637dfc5f8bca.tar.bz2
refactor everything into its own class, include shorewall rules if needed
Diffstat (limited to 'manifests/ssl.pp')
-rw-r--r--manifests/ssl.pp5
1 files changed, 5 insertions, 0 deletions
diff --git a/manifests/ssl.pp b/manifests/ssl.pp
new file mode 100644
index 0000000..376f4ee
--- /dev/null
+++ b/manifests/ssl.pp
@@ -0,0 +1,5 @@
+class lighttpd::ssl inherits lighttpd {
+ if $use_shorewall {
+ include shorewall::rules::https
+ }
+}