summaryrefslogtreecommitdiff
path: root/manifests/ssl.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/ssl.pp')
-rw-r--r--manifests/ssl.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/ssl.pp b/manifests/ssl.pp
index c779da4..a604b05 100644
--- a/manifests/ssl.pp
+++ b/manifests/ssl.pp
@@ -1,13 +1,13 @@
# manifests/ssl.pp
class apache::ssl inherits apache {
- case $operatingsystem {
+ case $::operatingsystem {
centos: { include apache::ssl::centos }
openbsd: { include apache::ssl::openbsd }
debian: { include apache::ssl::debian }
defaults: { include apache::ssl::base }
}
- if $use_shorewall {
+ if hiera('use_shorewall',false) {
include shorewall::rules::https
}
}