[mystrom] turning on/off can be quiet

This commit is contained in:
Nico Schottelius 2020-12-26 17:22:47 +01:00
parent d2383c666c
commit 5b93573edf
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ fi
while [ $# -ge 1 ]; do
hostname=$1; shift
curl --location \
curl -s --location \
--request GET \
"http://${hostname}/relay?state=0"

View File

@ -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