diff options
author | mail_redacted_for_web | 2015-10-22 14:25:17 -0700 |
---|---|---|
committer | mail_redacted_for_web | 2015-10-22 14:25:17 -0700 |
commit | 86cb66b057c0d2c45519f0cdceb28206528c7e1b (patch) | |
tree | 58bf4472391eb8766f813c99cd3c0a6cae8f9111 | |
parent | 9d1b750d743a4060101949de41838fec61985862 (diff) | |
download | control-repo-template-86cb66b057c0d2c45519f0cdceb28206528c7e1b.tar.bz2 |
fix incorrect curly brace
-rw-r--r-- | manifests/site.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/site.pp b/manifests/site.pp index 7f7b8db..5442bc0 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -42,7 +42,7 @@ node default { #https://docs.puppetlabs.com/puppet/latest/reference/lang_facts_and_builtin_vars.html#trusted-facts #https://docs.puppetlabs.com/puppet/latest/reference/ssl_attributes_extensions.html#aws-attributes-and-extensions-population-example - if !empty( ${trusted['extensions']['pp_role']} ) { + if !empty( $trusted['extensions']['pp_role'] ) { include "role::${trusted['extensions']['pp_role']}" } |