mirror of
https://github.com/netweak/agent.git
synced 2024-12-16 21:46:58 -05:00
Replaced api url
This commit is contained in:
parent
2b6ae35e4b
commit
6fbb83654c
1 changed files with 3 additions and 3 deletions
6
agent.sh
6
agent.sh
|
@ -4,7 +4,7 @@
|
||||||
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
||||||
|
|
||||||
# Agent version
|
# Agent version
|
||||||
version="1.0.0"
|
version="1.1.0"
|
||||||
|
|
||||||
# API Token
|
# API Token
|
||||||
if [ -f /etc/netweak/token.conf ]
|
if [ -f /etc/netweak/token.conf ]
|
||||||
|
@ -224,9 +224,9 @@ data_post="token=${auth[0]}&data=$(base "$version") $(base "$uptime") $(base "$s
|
||||||
# API request with automatic termination
|
# API request with automatic termination
|
||||||
if [ -n "$(command -v timeout)" ]
|
if [ -n "$(command -v timeout)" ]
|
||||||
then
|
then
|
||||||
timeout -s SIGKILL 30 wget -q -o /dev/null -O /etc/netweak/log/agent.log -T 25 --post-data "$data_post" --no-check-certificate "https://www.netweak.com/api/agent/report"
|
timeout -s SIGKILL 30 wget -q -o /dev/null -O /etc/netweak/log/agent.log -T 25 --post-data "$data_post" --no-check-certificate "https://api.netweak.com/agent/report"
|
||||||
else
|
else
|
||||||
wget -q -o /dev/null -O /etc/netweak/log/agent.log -T 25 --post-data "$data_post" --no-check-certificate "https://www.netweak.com/api/agent/report"
|
wget -q -o /dev/null -O /etc/netweak/log/agent.log -T 25 --post-data "$data_post" --no-check-certificate "https://api.netweak.com/agent/report"
|
||||||
wget_pid=$!
|
wget_pid=$!
|
||||||
wget_counter=0
|
wget_counter=0
|
||||||
wget_timeout=30
|
wget_timeout=30
|
||||||
|
|
Loading…
Reference in a new issue