summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-04-04 15:23:43 -0400
committerMicah Anderson <micah@riseup.net>2013-04-04 15:23:43 -0400
commit6b537bb77dbfaa754b88e64041ecd57e7f7544a9 (patch)
treee32c56a39d584373d0029cf058a875a70ea5ad6e
parentb49a787a2961129a969cfecd1eec1df588aaacac (diff)
fix syntax error
-rw-r--r--manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 4bd8335..f8639f1 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,7 +1,7 @@
class couchdb ( $admin_pw = '', $bigcouch = false, $bigcouch_cookie = '', $ednp_port = '9001' )
{
- if $admin_pw = '' {
+ if $admin_pw == '' {
err('Must set admin password by passing a value to the $admin_pw parameter')
}