summaryrefslogtreecommitdiffstats
path: root/manifests/brick.pp
diff options
context:
space:
mode:
authorJames Shubin <james@shubin.ca>2013-12-31 17:15:11 -0500
committerJames Shubin <james@shubin.ca>2013-12-31 17:33:52 -0500
commitf533720ebe319a8120e9bbd8e1ef765fb7bf929f (patch)
tree83c334875791fa13e2f38d989b316c0c19cfacfc /manifests/brick.pp
parent2b1e94f559a5d952068ed1ffb5051ca0c6e6dd04 (diff)
downloadpuppet-gluster-f533720ebe319a8120e9bbd8e1ef765fb7bf929f.tar.gz
puppet-gluster-f533720ebe319a8120e9bbd8e1ef765fb7bf929f.tar.xz
puppet-gluster-f533720ebe319a8120e9bbd8e1ef765fb7bf929f.zip
Update template variables to use the '@' prefix.
I've updated wrapper.pp too, but I haven't tested it recently.
Diffstat (limited to 'manifests/brick.pp')
-rw-r--r--manifests/brick.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/brick.pp b/manifests/brick.pp
index 8ab9241..bbaf707 100644
--- a/manifests/brick.pp
+++ b/manifests/brick.pp
@@ -151,7 +151,7 @@ define gluster::brick(
# put all the options in an array, remove the empty ones, and join with
# commas (this removes ',,' double comma uglyness)
# adding 'defaults' here ensures no ',' (leading comma) in mount command
- $mount_options = inline_template('<%= (["defaults"]+options_list).delete_if {|x| x.empty? }.join(",") %>')
+ $mount_options = inline_template('<%= (["defaults"]+@options_list).delete_if {|x| x.empty? }.join(",") %>')
$exec_noop = $areyousure ? {
true => false,