Add test-timesync script that helps to find when the cloud timesync happens in Router OS v6

This commit is contained in:
Pothi Kalimuthu 2022-11-29 07:03:24 +05:30
parent 66b0e38cb9
commit b4acd491ab
No known key found for this signature in database
GPG key ID: 08202A469C2D0E06

View file

@ -0,0 +1,10 @@
# Used to fill logs at every few seconds to find when the cloud timesync happens in RouterOS v6
# It can be used for multiple other use cases too.
:local i 0
:do {
:delay 10s
:set i ($i+10)
:log info "Time passed since boot: $i seconds"
} while ($i < 600)