summaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/client.pp')
-rw-r--r--manifests/client.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index 8d2280f..005d8e8 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -1,12 +1,12 @@
-class mysql::client {
+class mysql::client ( $use_shorewall = hiera('use_shorewall',false) {
case $::operatingsystem {
debian: { include mysql::client::debian }
default: { include mysql::client::base }
}
- if hiera('use_shorewall',false) {
+ if $use_shorewall {
include shorewall::rules::out::mysql
}
-
+
}