summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/document.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/document.pp b/manifests/document.pp
index be68983..2f6aac6 100644
--- a/manifests/document.pp
+++ b/manifests/document.pp
@@ -28,7 +28,7 @@ define couchdb::document(
cmd => 'PUT',
host => $host,
path => "${db}/${id}",
- unless => "/usr/bin/curl -s --netrc-file /etc/couchdb/couchdb.netrc ${url}"
+ unless => "/usr/bin/curl -s --netrc-file /etc/couchdb/couchdb.netrc ${url} | grep -q -v '{\"error\":'"
}
}
@@ -37,7 +37,7 @@ define couchdb::document(
cmd => 'DELETE',
host => $host,
path => "${db}/${id}",
- onlyif => "/usr/bin/curl -s --netrc-file /etc/couchdb/couchdb.netrc ${url}"
+ unless => "/usr/bin/curl -s --netrc-file /etc/couchdb/couchdb.netrc ${url} | grep -q '{\"error\":'"
}
}
}