mirror of
https://github.com/laspavel/mikrotik-scripts.git
synced 2025-06-24 15:08:41 +02:00
12 lines
436 B
Text
12 lines
436 B
Text
|
|
||
|
:do {
|
||
|
:local versioninfo [/system package update check-for-updates as-value]
|
||
|
:if (($versioninfo->"installed-version") != ($versioninfo->"latest-version")) do={
|
||
|
/log error ("Found new version " . ($versioninfo->"latest-version") . " installing now!")
|
||
|
/system package update download
|
||
|
:delay 5s
|
||
|
/system reboot
|
||
|
}
|
||
|
} on-error={
|
||
|
/log error "***** AUTOUPDATE script finished with error ******"
|
||
|
}
|