diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-12-19 16:09:03 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-12-19 16:09:03 -0200 |
commit | 1b5c378e634d3ff95c6953972b275d32ef0a535f (patch) | |
tree | 8c3f4ff82c07e485c198af5da64d70164a290c7a | |
parent | ac8d265f49b0c8e994963bdb9e62487a9ed40099 (diff) | |
download | puppet-wordpress-1b5c378e634d3ff95c6953972b275d32ef0a535f.tar.gz puppet-wordpress-1b5c378e634d3ff95c6953972b275d32ef0a535f.tar.bz2 |
Fixing parameter evaluation
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 77685cd..e144c1d 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -11,7 +11,7 @@ class wordpress { $real_wordpress_locale = $wordpress_locale ? { '' => '', - default => '-$wordpress_locale' + default => "-${wordpress_locale}" } file { "/usr/local/sbin/wordpress": |