From 9d000c96e0dcfab90a96559f2c348e90c065ae72 Mon Sep 17 00:00:00 2001 From: Fabian Blaese Date: Sun, 14 Jun 2020 13:17:03 +0200 Subject: [PATCH] alfred-proxy: Make curl silent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 [bump PKG_RELEASE] Signed-off-by: Adrian Schmutzler --- src/packages/fff/fff-alfred-monitoring-proxy/Makefile | 2 +- .../files/usr/sbin/alfred-monitoring-proxy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/packages/fff/fff-alfred-monitoring-proxy/Makefile b/src/packages/fff/fff-alfred-monitoring-proxy/Makefile index 524fca5..7723732 100644 --- a/src/packages/fff/fff-alfred-monitoring-proxy/Makefile +++ b/src/packages/fff/fff-alfred-monitoring-proxy/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=fff-alfred-monitoring-proxy -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_BUILD_DIR:=$(BUILD_DIR)/fff-alfred-monitoring-proxy 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"