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