From 5b93573edf1eb590b48a45b379d4996b8a9df61d Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Sat, 26 Dec 2020 17:22:47 +0100 Subject: [PATCH] [mystrom] turning on/off can be quiet --- mystrom/mystrom-off.sh | 2 +- mystrom/mystrom-on.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mystrom/mystrom-off.sh b/mystrom/mystrom-off.sh index 7268e90..9193ac4 100755 --- a/mystrom/mystrom-off.sh +++ b/mystrom/mystrom-off.sh @@ -10,7 +10,7 @@ fi while [ $# -ge 1 ]; do hostname=$1; shift - curl --location \ + curl -s --location \ --request GET \ "http://${hostname}/relay?state=0" diff --git a/mystrom/mystrom-on.sh b/mystrom/mystrom-on.sh index c9aac5a..f5387c8 100755 --- a/mystrom/mystrom-on.sh +++ b/mystrom/mystrom-on.sh @@ -10,7 +10,7 @@ fi while [ $# -ge 1 ]; do hostname=$1; shift - curl --location \ + curl -s --location \ --request GET \ "http://${hostname}/relay?state=1" done