summaryrefslogtreecommitdiffstats
path: root/perl-install/install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install')
-rw-r--r--perl-install/install/steps.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm
index 0319a6575..c252d8fbb 100644
--- a/perl-install/install/steps.pm
+++ b/perl-install/install/steps.pm
@@ -712,7 +712,7 @@ sub configureTimezone {
# We prefer chrony, but we'll deal with ntpd for the sake of upgrades
my $pkg = install::pkgs::packageByName($o->{packages}, 'chrony');
unless ($pkg && $pkg->flag_installed) {
- $pkg = install::pkgs::packageByName($o->{packages}, 'ntp');
+ $pkg = install::pkgs::packageByName($o->{packages}, 'ntpsec');
$o->pkg_install('chrony') unless $pkg && $pkg->flag_installed;
}
}