diff options
author | Colin Guthrie <colin@mageia.org> | 2013-11-23 11:08:35 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2013-11-23 11:11:12 +0000 |
commit | a69511015762808bba2d17cfc64485eb7fd5e420 (patch) | |
tree | 9a0dcd0f02d4aa432ef60827148cd8e2ae5eef76 /perl-install/timezone.pm | |
parent | a70773cb277033a412fc9d71ff53383b29cbb84a (diff) | |
download | drakx-a69511015762808bba2d17cfc64485eb7fd5e420.tar drakx-a69511015762808bba2d17cfc64485eb7fd5e420.tar.gz drakx-a69511015762808bba2d17cfc64485eb7fd5e420.tar.bz2 drakx-a69511015762808bba2d17cfc64485eb7fd5e420.tar.xz drakx-a69511015762808bba2d17cfc64485eb7fd5e420.zip |
timezone: As we will install chrony, assume that when nothing is installed.
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() { |