diff options
author | David Walser <luigiwalser@mageia.org> | 2013-11-17 19:00:07 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2013-11-17 20:41:41 +0000 |
commit | d54857e5704e52bc93d810250732affc82e1d65f (patch) | |
tree | fbaccf45e44d72d4facdd803a1279baa66c14618 /perl-install/standalone/finish-install | |
parent | 6298fe9b2ec4be3c8845a0ab39c90ad76ea7a49e (diff) | |
download | drakx-d54857e5704e52bc93d810250732affc82e1d65f.tar drakx-d54857e5704e52bc93d810250732affc82e1d65f.tar.gz drakx-d54857e5704e52bc93d810250732affc82e1d65f.tar.bz2 drakx-d54857e5704e52bc93d810250732affc82e1d65f.tar.xz drakx-d54857e5704e52bc93d810250732affc82e1d65f.zip |
Add chrony support to drakclock mga#11092
v2 (by Colin Guthrie)
* Fix external variable reference (my -> our + $ when using it)
* Drop systemd cgroup filesystem check as the path has changed now
(prefer "systemctl is-active foo.service" instead)
* Add iburst to chrony config server definitions (triggers sync at
startup)
* Don't use ntpdate with chrony - rather chronyc waitsync
* Don't bother checking for ntp in finish-install - just use chrony
Diffstat (limited to 'perl-install/standalone/finish-install')
-rwxr-xr-x | perl-install/standalone/finish-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install index 20b0a179f..16de321ea 100755 --- a/perl-install/standalone/finish-install +++ b/perl-install/standalone/finish-install @@ -75,7 +75,7 @@ sub ask_timezone() { $timezone->{timezone} = timezone::bestTimezone($locale->{country}) if $locale->{country}; any::configure_timezone($in, $timezone, 'ask_gmt', lc(get_conf('TIMEZONE')) eq 'simplified'); - $in->do_pkgs->ensure_is_installed('ntp') if $timezone->{ntp}; + $in->do_pkgs->ensure_is_installed('chrony') if $timezone->{ntp}; timezone::write($timezone); #- reload sys clock from hc once we know the real timezone |