Disable chrony-wait

The chrony-wait service also prevents ntpd from starting on reboots.
This service should be disabled if present and running on the host when
using ntp.

Change-Id: I4833525ae98d95c3ad84e3f79f30b8078c394ee1
Closes-Bug: #1795986
(cherry picked from commit 594aff4289)
This commit is contained in:
Alex Schultz 2018-10-03 16:02:08 -06:00
parent a6eaab1406
commit 681e07a7c3
1 changed files with 5 additions and 0 deletions

View File

@ -26,5 +26,10 @@ class tripleo::profile::base::time::ntp {
enable => false,
before => Class['ntp']
}
service { 'chrony-wait':
ensure => stopped,
enable => false,
before => Class['ntp']
}
include ::ntp
}