Merge pull request #54 from beeyev/beeyev-patch-1

bugfix - cloud based detection #53
This commit is contained in:
Alexander Tebiev 2024-06-04 12:53:29 +02:00 committed by GitHub
commit c47e747c27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,9 +3,9 @@
#----------SCRIPT INFORMATION--------------------------------------------------- #----------SCRIPT INFORMATION---------------------------------------------------
# #
# Script: Mikrotik RouterOS automatic backup & update # Script: Mikrotik RouterOS automatic backup & update
# Version: 23.11.25 # Version: 24.06.04
# Created: 07/08/2018 # Created: 07/08/2018
# Updated: 25/11/2023 # Updated: 04/06/2024
# Author: Alexander Tebiev # Author: Alexander Tebiev
# Website: https://github.com/beeyev # Website: https://github.com/beeyev
# You can contact me by e-mail at tebiev@mail.com # You can contact me by e-mail at tebiev@mail.com
@ -214,7 +214,7 @@ if ([:len [/system identity get name]] = 0 or [/system identity get name] = "Mik
}; };
:local isSoftBased false; :local isSoftBased false;
:if ([/system resource get board-name] = "CHR" or [/system resource get board-name] = "x86") do={ :if ([:pick [/system resource get board-name] 0 3] = "CHR" or [/system resource get board-name] = "x86") do={
:set isSoftBased true; :set isSoftBased true;
}; };