summaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-02-10 14:35:19 +0100
committermh <mh@immerda.ch>2012-02-10 14:35:19 +0100
commit4ac736951588128005348a48f6bf20092000a2ea (patch)
treeba076cb79131c9c4c64d623de7a11a4ac7b4c320 /manifests/client.pp
parenta72ab41660d403f7615eed0e1bf538a3f26cb8da (diff)
migrate everything to hiera/trocla and use the new scoping style
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 f375a51..8d2280f 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -1,12 +1,12 @@
class mysql::client {
- case $operatingsystem {
+ case $::operatingsystem {
debian: { include mysql::client::debian }
default: { include mysql::client::base }
}
- if $use_shorewall {
+ if hiera('use_shorewall',false) {
include shorewall::rules::out::mysql
}
-
+
}