diff options
Diffstat (limited to 'time_wizard/Ntp.pm')
-rw-r--r-- | time_wizard/Ntp.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/time_wizard/Ntp.pm b/time_wizard/Ntp.pm index fffd737b..470bbfe9 100644 --- a/time_wizard/Ntp.pm +++ b/time_wizard/Ntp.pm @@ -75,7 +75,7 @@ $o->{pages} = { next => 'config' }, config => { - name => N("Time servers") . "\n\n" . N("Select a primary a secondary and a third server from the list.") . "\n\n" . N("(we recommend using the server pool.ntp.org twice as this server randomly points to available time servers)"), + name => N("Time servers") . "\n" . N("Select a primary a secondary and a third server from the list.") . "\n" . N("(we recommend using the server pool.ntp.org twice as this server randomly points to available time servers)"), pre => sub { $o->{var}{varserver1} ||= 'pool.ntp.org'; $o->{var}{varserver2} ||= 'pool.ntp.org'; @@ -209,7 +209,8 @@ sub do_it { -f "/etc/ntp/step-tickers" and MDK::Common::cp_af("/etc/ntp/step-tickers", "/etc/ntp/step-tickers.orig"); open(NEW, "> /etc/ntp/step-tickers") or die "can not open /etc/ntp/step-tickers: $!"; print NEW $o->{var}{varserver1}."\n"; - print NEW $o->{var}{varserver2}."\n"; + print NEW $o->{var}{varserver2}."\n"; + print NEW $o->{var}{varserver3}."\n"; close NEW or die "can not close /etc/ntp/step-tickers: $!"; substInFile { s/(# server clock.via.net)/$1\nserver $o->{var}{varserver1}/ } '/etc/ntp.conf' if -f '/etc/ntp.conf'; standalone::explanations("Wrote /etc/ntp/step-tickers, starting services"); |