puppet: Do not ensure Chrony is running.

Commit f6d27562fa (#21564) tried to
ensure Chrony is running, which fails in containers where Chrony
doesn’t have permission to update the host clock.

The Debian package should still attempt to start it, and Puppet should
still restart it when chrony.conf is modified.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2022-03-29 15:31:09 -07:00
committed by Tim Abbott
parent ca38b33346
commit 935cb605a5

View File

@@ -61,7 +61,7 @@ class zulip::profile::base {
}
}
package { 'ntp': ensure => 'purged', before => Package['chrony'] }
service { 'chrony': ensure => 'running', require => Package['chrony'] }
service { 'chrony': require => Package['chrony'] }
package { $base_packages: ensure => 'installed' }
group { 'zulip':