summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2020-12-31 10:39:43 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2022-01-05 15:34:30 +0100
commit08b1d3996f89d923fc16dd7f60434d66955c162a (patch)
treefc6f7fc82f50be85b460a2d890be496c262eee9e /perl-install/install/steps.pm
parent96f3c6f4744186ab84044b52ba760ad80da987a4 (diff)
downloaddrakx-08b1d3996f89d923fc16dd7f60434d66955c162a.tar
drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.tar.gz
drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.tar.bz2
drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.tar.xz
drakx-08b1d3996f89d923fc16dd7f60434d66955c162a.zip
perl_checker cleanups
Diffstat (limited to 'perl-install/install/steps.pm')
-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 285feb8a9..f19b8acc2 100644
--- a/perl-install/install/steps.pm
+++ b/perl-install/install/steps.pm
@@ -713,7 +713,7 @@ sub configureTimezone {
my $pkg = install::pkgs::packageByName($o->{packages}, 'chrony');
unless ($pkg && $pkg->flag_installed) {
$pkg = install::pkgs::packageByName($o->{packages}, 'ntp');
- $o->pkg_install('chrony') unless ($pkg && $pkg->flag_installed);
+ $o->pkg_install('chrony') unless $pkg && $pkg->flag_installed;
}
}