summaryrefslogtreecommitdiff
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
parentdacaeb4d98be9468336923f5501822d389bda768 (diff)
make curl silent
-rw-r--r--manifests/add_user.pp2
-rw-r--r--manifests/document.pp4
-rw-r--r--manifests/query.pp2
3 files changed, 4 insertions, 4 deletions
diff --git a/manifests/add_user.pp b/manifests/add_user.pp
index 28826f3..659aea8 100644
--- a/manifests/add_user.pp
+++ b/manifests/add_user.pp
@@ -29,6 +29,6 @@ define couchdb::add_user ( $roles, $pw, $salt = '' ) {
db => '_users',
id => "org.couchdb.user:${name}",
data => $data,
- unless => "/usr/bin/curl -f ${name}:${pw}@127.0.0.1:${port}/"
+ unless => "/usr/bin/curl -s -f ${name}:${pw}@127.0.0.1:${port}/"
}
}
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}"
}
}
}
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
}