summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-08-03 17:25:54 +0200
committermh <mh@immerda.ch>2011-08-03 17:25:54 +0200
commit7374cf944fbc1b52c438ce7e5345f94427ea876e (patch)
tree8d6a484204250560cc71c011941ba73f2c66163b /manifests
parent8ffd1eab30b4bed765457c73ea40b994bff38b7e (diff)
fix variable lookup
Diffstat (limited to 'manifests')
-rw-r--r--manifests/config.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index 9ce8730..c53aef1 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -1,8 +1,8 @@
class trocla::config($ruby='system') {
- if $trocla::default_config::ruby == 'system' or $trocla::default_config::ruby == 'both' {
+ if $trocla::config::ruby == 'system' or $trocla::config::ruby == 'both' {
require trocla::master
}
- if $trocla::default_config::ruby == 'ree' or $trocla::default_config::ruby == 'both' {
+ if $trocla::config::ruby == 'ree' or $trocla::config::ruby == 'both' {
require trocla::master::ree
}