diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-12-19 15:35:29 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-12-19 15:35:29 -0200 |
commit | 70704ff97fa8e6fea87cd9ab463af98c2db671e0 (patch) | |
tree | 1b5d3aec603b9f190fea33ac6c28e2e5bab31924 | |
parent | 0d8d60b310dec79f382a33b6c3225a7cd5b4e413 (diff) | |
download | puppet-wordpress-70704ff97fa8e6fea87cd9ab463af98c2db671e0.tar.gz puppet-wordpress-70704ff97fa8e6fea87cd9ab463af98c2db671e0.tar.bz2 |
Another syntax fix
-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 f67b711..77685cd 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -9,7 +9,7 @@ class wordpress { } } - $real_wordpress_locale = $wordpress_locale { + $real_wordpress_locale = $wordpress_locale ? { '' => '', default => '-$wordpress_locale' } |