summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-04-23 23:24:39 +0200
committervarac <varacanero@zeromail.org>2013-04-23 23:24:39 +0200
commit321278b3805ce74b6869ec070e083c8a91849d6f (patch)
tree97ef2461c17f27884413b301cb85f26201b230ad
parent6b537bb77dbfaa754b88e64041ecd57e7f7544a9 (diff)
replace single with double quotes when creating db, also for default values
-rw-r--r--manifests/create_db.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/create_db.pp b/manifests/create_db.pp
index b080b06..6a6d18f 100644
--- a/manifests/create_db.pp
+++ b/manifests/create_db.pp
@@ -1,6 +1,6 @@
define couchdb::create_db ( $host='127.0.0.1:5984',
- $admins='{\"names\": [], \"roles\": [] }',
- $readers='{\"names\": [], \"roles\": [] }' )
+ $admins="{\"names\": [], \"roles\": [] }",
+ $readers="{\"names\": [], \"roles\": [] }" )
{
Couchdb::Query["create_db_${name}"] -> Couchdb::Query["db_security_${name}"]