diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:11:46 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2021-03-22 23:11:46 +0300 |
commit | 56df129e9de9022c2aa01717a784d94e1374115e (patch) | |
tree | a426b8f2ea71ebcf1350ac2e9a271079e9537797 /e3372-reboot.sh | |
parent | efe41f5ce1c1023af96d06c19f5d4f91957d26b5 (diff) |
code refactoring
Diffstat (limited to 'e3372-reboot.sh')
-rwxr-xr-x | e3372-reboot.sh | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/e3372-reboot.sh b/e3372-reboot.sh index f727177..7b0e9e7 100755 --- a/e3372-reboot.sh +++ b/e3372-reboot.sh @@ -1,16 +1,12 @@ #!/bin/bash -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" . "$DIR/config.sh" -curl -s -X GET "http://$MODEM_IP/api/webserver/SesTokInfo" > ses_tok.xml -COOKIE=`grep "SessionID=" ses_tok.xml | cut -b 10-147` -TOKEN=`grep "TokInfo" ses_tok.xml | cut -b 10-41` +get_token curl -s -X POST "http://$MODEM_IP/api/device/control" \ - -H "Cookie: $COOKIE" \ - -H "__RequestVerificationToken: $TOKEN" \ - -H "Content-Type: text/xml" \ - -d "<?xml version='1.0' encoding='UTF-8'?><request><Control>1</Control></request>" - -#test
\ No newline at end of file + -H "Cookie: $COOKIE" \ + -H "__RequestVerificationToken: $TOKEN" \ + -H "Content-Type: text/xml" \ + -d "<?xml version='1.0' encoding='UTF-8'?><request><Control>1</Control></request>" |