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, 4 insertions, 2 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index 8d2280f..bb1aaa7 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -1,11 +1,13 @@
-class mysql::client {
+class mysql::client (
+ $manage_shorewall = false
+) {
case $::operatingsystem {
debian: { include mysql::client::debian }
default: { include mysql::client::base }
}
- if hiera('use_shorewall',false) {
+ if $manage_shorewall {
include shorewall::rules::out::mysql
}