mirror of
https://github.com/pothi/mikrotik-scripts.git
synced 2025-06-21 05:45:42 +02:00
11 lines
264 B
Text
11 lines
264 B
Text
|
# 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)
|