diff --git a/rotate-ntp b/rotate-ntp index 465a46c..534f400 100644 --- a/rotate-ntp +++ b/rotate-ntp @@ -6,12 +6,14 @@ :global NtpPool; +:global LogPrintExit; + :local Ntp1 [ :resolve ("0." . $NtpPool) ]; :local Ntp2 [ :resolve ("1." . $NtpPool) ]; :if ([ / system ntp client get enabled ] != true) do={ - :log warning "NTP client is not enabled!"; + $LogPrintExit warning "NTP client is not enabled!" true; } -:log info ("Updating NTP servers to " . $Ntp1 . " and " . $Ntp2); +$LogPrintExit info ("Updating NTP servers to " . $Ntp1 . " and " . $Ntp2) false; / system ntp client set primary-ntp=$Ntp1 secondary-ntp=$Ntp2;