1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Added improved KVM support to MeshCmd.exe and MeshAgent

This commit is contained in:
Ylian Saint-Hilaire 2018-07-02 14:34:10 -07:00
parent 2a54ebf9b9
commit 3dafa39e79
16 changed files with 1890 additions and 42 deletions

View file

@ -46,12 +46,12 @@ CheckInstallAgent() {
# echo "Detecting computer type..."
machinetype=$( uname -m )
machineid=0
if [ $machinetype == 'x86_64' ]
if [ $machinetype == 'x86_64' ] || [ $machinetype == 'amd64' ]
then
# Linux x86, 64 bit
machineid=6
fi
if [ $machinetype == 'x86' ]
if [ $machinetype == 'x86' ] || [ $machinetype == 'i686' ]
then
# Linux x86, 32 bit
machineid=5