summaryrefslogtreecommitdiff
path: root/manifests/create_db.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-03-15 20:59:41 +0100
committervarac <varacanero@zeromail.org>2013-03-15 20:59:41 +0100
commita4809d6b0627431f72de916abee1214418c01c9d (patch)
tree9bcf8f58c1fccd8ad862709e6c74d40a07e61045 /manifests/create_db.pp
parent988df7312ec9204b62eedadea9ff2504e5cb10f6 (diff)
really replace single with double quotes when creating db
Diffstat (limited to 'manifests/create_db.pp')
-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 a2d5ccc..b81dbed 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}"]