aboutsummaryrefslogtreecommitdiffstats
path: root/rotate-ntp
diff options
context:
space:
mode:
Diffstat (limited to 'rotate-ntp')
-rw-r--r--rotate-ntp20
1 files changed, 0 insertions, 20 deletions
diff --git a/rotate-ntp b/rotate-ntp
deleted file mode 100644
index e0c1999..0000000
--- a/rotate-ntp
+++ /dev/null
@@ -1,20 +0,0 @@
-#!rsc
-# RouterOS script: rotate-ntp
-# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
-#
-# rotate the ntp servers
-# https://git.eworm.de/cgit/routeros-scripts/about/doc/rotate-ntp.md
-
-:global NtpPool;
-
-:global LogPrintExit;
-
-:local Ntp1 [ :resolve ("0." . $NtpPool) ];
-:local Ntp2 [ :resolve ("1." . $NtpPool) ];
-
-:if ([ / system ntp client get enabled ] != true) do={
- $LogPrintExit warning "NTP client is not enabled!" true;
-}
-
-$LogPrintExit info ("Updating NTP servers to " . $Ntp1 . " and " . $Ntp2) false;
-/ system ntp client set primary-ntp=$Ntp1 secondary-ntp=$Ntp2;