summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-08-29 19:42:19 +0200
committervarac <varacanero@zeromail.org>2013-08-29 19:42:19 +0200
commitca467f2c8ec25132133e058f446217828b932671 (patch)
tree92fe1ba06e0892d4d76996c1c1cb2dbd9369daa9 /manifests
parent32a0f9df6e80c15b3b49b8ad81b9a49ecc6f39dd (diff)
fixed merge resolution error from last merge
Diffstat (limited to 'manifests')
-rw-r--r--manifests/create_db.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/create_db.pp b/manifests/create_db.pp
index afab7b5..690892c 100644
--- a/manifests/create_db.pp
+++ b/manifests/create_db.pp
@@ -9,7 +9,7 @@ define couchdb::create_db (
couchdb::query { "create_db_${name}":
cmd => 'PUT',
host => $host,
- url => $name,
+ path => $name,
unless => "/usr/bin/curl -s --netrc-file /etc/couchdb/couchdb.netrc ${host}/${name} | grep -q -v '{\"error\":\"not_found\"'"
}