File tree 2 files changed +2
-1
lines changed
lib/GLPI/Agent/Task/Inventory/Generic/Remote_Mgmt
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ inventory:
19
19
* Update glpi-agent script with --full-inventory-postpone option support
20
20
* Update glpi-agent script with --full option support to force a full inventory
21
21
* fix #611: Wrong bios value as array on win32 bios when using WMI in proxmox vm
22
+ * fix #609: Fix rustdesk remote management version analysis
22
23
23
24
netdiscovery/netinventory:
24
25
* Keep device mac address found via snmp during netdiscovery as this is the one
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ sub doInventory {
45
45
command => $command ." --version" ,
46
46
logger => $logger
47
47
);
48
- if ($version && $version =~ / ^(\d +)\. (\d +)\. (\d +)$ / ) {
48
+ if ($version && $version =~ / ^(\d +)\. (\d +)\. (\d +)/ ) {
49
49
$required = int ($1 ) > 1 || (int ($1 ) == 1 && int ($2 ) > 2) || (int ($1 ) == 1 && int ($2 ) == 2 && int ($3 ) >= 2) ? 0 : 1;
50
50
}
51
51
if ($required ) {
You can’t perform that action at this time.
0 commit comments