mirror of
https://github.com/pothi/mikrotik-scripts.git
synced 2025-06-20 21:35:43 +02:00
10 lines
264 B
Text
10 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)
|