summaryrefslogtreecommitdiff
path: root/manifests/document.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/document.pp
parentdacaeb4d98be9468336923f5501822d389bda768 (diff)
make curl silent
Diffstat (limited to 'manifests/document.pp')
-rw-r--r--manifests/document.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/document.pp b/manifests/document.pp
index 77296dc..be68983 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 --netrc-file /etc/couchdb/couchdb.netrc ${url}"
+ unless => "/usr/bin/curl -s --netrc-file /etc/couchdb/couchdb.netrc ${url}"
}
}
@@ -37,7 +37,7 @@ define couchdb::document(
cmd => 'DELETE',
host => $host,
path => "${db}/${id}",
- onlyif => "/usr/bin/curl --netrc-file /etc/couchdb/couchdb.netrc ${url}"
+ onlyif => "/usr/bin/curl -s --netrc-file /etc/couchdb/couchdb.netrc ${url}"
}
}
}