summaryrefslogtreecommitdiff
path: root/manifests/create_db.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-03-15 09:19:11 +0100
committervarac <varacanero@zeromail.org>2013-03-15 09:19:11 +0100
commit988df7312ec9204b62eedadea9ff2504e5cb10f6 (patch)
treeffbfdc52c0b8b6995f77d20056d4c35a4f902bf2 /manifests/create_db.pp
parent77b80561e187c93f7c48f5ac4136e800702b0cec (diff)
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 abf5d69..a2d5ccc 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}"]