summaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
authoro <o@immerda.ch>2012-06-14 11:33:31 -0300
committero <o@immerda.ch>2012-06-14 11:33:31 -0300
commit01ab6a5315897efd4d7a52ddaeeecc78a11c1550 (patch)
treecd11cf7b993cc468848642a82d06dfe98ca32222 /manifests/client.pp
parentcd68caf6624baafe5430c1a76d118085cc416429 (diff)
some more hiera variables removed
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
}