diff options
Diffstat (limited to 'perl-install/timezone.pm')
-rw-r--r-- | perl-install/timezone.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/timezone.pm b/perl-install/timezone.pm index b4b4cfe89..eeb1ed30d 100644 --- a/perl-install/timezone.pm +++ b/perl-install/timezone.pm @@ -24,11 +24,11 @@ sub read() { { timezone => $t{ZONE}, UTC => text2bool($t{UTC}) }; } -our $ntp = "chrony"; -my $servername_config_suffix = " iburst"; +our $ntp = "ntp"; +my $servername_config_suffix = ""; unless (-f $::prefix . "/etc/" . $ntp . ".conf") { - $ntp = "ntp"; - $servername_config_suffix = ""; + $ntp = "chrony"; + $servername_config_suffix = " iburst"; } sub ntp_server() { |