diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-02-07 11:45:35 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-02-07 11:45:35 -0200 |
commit | 7697eb1565ccf1d29683529091422687f7dc1588 (patch) | |
tree | 2b92fb0740844cc2c099f6f4e0972376bae082d7 | |
parent | 7e8795e5032d27f429cca246eca3923a9f33d31b (diff) | |
download | puppet-wordpress-7697eb1565ccf1d29683529091422687f7dc1588.tar.gz puppet-wordpress-7697eb1565ccf1d29683529091422687f7dc1588.tar.bz2 |
Fixing variable attribution
-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 ad5e553..3ca2859 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -5,7 +5,7 @@ class wordpress( $real_wordpress_locale = $locale ? { '' => '', - default => "-${wordpress_locale}" + default => "-${locale}" } file { "/usr/local/sbin/wordpress": |