summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-04-28 13:49:36 +0200
committervarac <varacanero@zeromail.org>2016-04-28 13:49:36 +0200
commitbacec3e072649be4ade56f7df8506b46ae9c5166 (patch)
tree07af3ef48c97f5026c593fafbc8fc68d8204892a
parentb4a4a8434616247156e59b860b47cc6256ead8d1 (diff)
Dont use curly braces in resource referenceHEADmaster
Puppet future parser will complain otherwise.
-rw-r--r--manifests/config.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index 0f12b50..5937a22 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -45,7 +45,7 @@ define bundler::config (
$bundler_path = $bundler::params::bundler_path
) {
- Class['bundler::install'] -> Bundler::Config[${name}]
+ Class['bundler::install'] -> Bundler::Config[$name]
if $user == 'root' {
$home_dir = '/root'