summaryrefslogtreecommitdiff
path: root/manifests/query.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-09-04 18:47:09 +0200
committervarac <varacanero@zeromail.org>2013-09-04 18:47:09 +0200
commit2c5ba99a88417e1f7482b03fd5f8deb890168873 (patch)
tree79485a4f558dad727980c56df1538a2aa41281be /manifests/query.pp
parentdacaeb4d98be9468336923f5501822d389bda768 (diff)
make curl silent
Diffstat (limited to 'manifests/query.pp')
-rw-r--r--manifests/query.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/query.pp b/manifests/query.pp
index 0549ded..72ae4d2 100644
--- a/manifests/query.pp
+++ b/manifests/query.pp
@@ -1,7 +1,7 @@
define couchdb::query (
$cmd, $path, $host='127.0.0.1:5984', $data = '{}', $unless = undef) {
- exec { "/usr/bin/curl --netrc-file /etc/couchdb/couchdb.netrc -X ${cmd} ${host}/${path} --data \'${data}\'":
+ exec { "/usr/bin/curl -s --netrc-file /etc/couchdb/couchdb.netrc -X ${cmd} ${host}/${path} --data \'${data}\'":
require => [ Package['curl'], Exec['wait_for_couchdb'] ],
unless => $unless
}