Fixed device group policy download in Linux.

This commit is contained in:
Ylian Saint-Hilaire 2018-11-25 13:08:27 -08:00
parent 532743dd1b
commit e1e052840d
3 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ DownloadAgent() {
wget $url/meshsettings?id=$meshid -q --no-check-certificate -O /usr/local/mesh/meshagent.msh
# If it did not work, try again using http
if [ $? -eq 0 ]
if [ $? -ne 0 ]
then
wget $url/meshsettings?id=$meshid -q -O /usr/local/mesh/meshagent.msh
fi

View File

@ -1,6 +1,6 @@
{
"name": "meshcentral",
"version": "0.2.3-e",
"version": "0.2.3-f",
"keywords": [
"Remote Management",
"Intel AMT",

File diff suppressed because one or more lines are too long