[PATCH] alfred-proxy: Make curl silent

Fabian Bläse fabian at blaese.de
So Jun 14 13:17:03 CEST 2020


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 <fabian at blaese.de>
---
 .../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"
-- 
2.27.0



Mehr Informationen über die Mailingliste franken-dev