From patchwork Sun Jun 14 11:17:03 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: alfred-proxy: Make curl silent From: Fabian Blaese X-Patchwork-Id: 1395 Message-Id: <20200614111705.481189-1-fabian@blaese.de> To: franken-dev@freifunk.net Date: Sun, 14 Jun 2020 13:17:03 +0200 As we now log output of cron scripts to syslog, the debug output of curl spams the rather short-lived syslog. As this debug output is unessesary most of the time, it now is disabled. Instead, curl's silent option is used, together with '-S', which reenables error output. Signed-off-by: Fabian Bläse Reviewed-by: Robert Langhammer Reviewed-by: Adrian Schmutzler Tested-by: Adrian Schmutzler --- .../files/usr/sbin/alfred-monitoring-proxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packages/fff/fff-alfred-monitoring-proxy/files/usr/sbin/alfred-monitoring-proxy b/src/packages/fff/fff-alfred-monitoring-proxy/files/usr/sbin/alfred-monitoring-proxy index d2c2f61..8b241f6 100755 --- a/src/packages/fff/fff-alfred-monitoring-proxy/files/usr/sbin/alfred-monitoring-proxy +++ b/src/packages/fff/fff-alfred-monitoring-proxy/files/usr/sbin/alfred-monitoring-proxy @@ -4,4 +4,4 @@ api_url="https://monitoring.freifunk-franken.de/api/alfred2" fetch_id="64" /bin/alfred-json -r "$fetch_id" | \ - /usr/bin/curl -k -v -H "Content-type: application/json; charset=UTF-8" --data-binary @- "$api_url" + /usr/bin/curl -k -sS -H "Content-type: application/json; charset=UTF-8" --data-binary @- "$api_url"