|
@@ -6,6 +6,25 @@
|
|
|
hosts: "{{ l_base_packages_hosts | default('oo_all_hosts') }}"
|
|
|
any_errors_fatal: true
|
|
|
tasks:
|
|
|
+ - name: Determine if chrony is installed
|
|
|
+ command: rpm -q chrony
|
|
|
+ failed_when: false
|
|
|
+ register: chrony_installed
|
|
|
+
|
|
|
+ # chrony is installed on atomic host by default, so no need to worry about
|
|
|
+ # atomic here.
|
|
|
+ - name: Install ntp package
|
|
|
+ package: name=ntp state=present
|
|
|
+ when:
|
|
|
+ - openshift_clock_enabled | default(True) | bool
|
|
|
+ - chrony_installed.rc != 0
|
|
|
+ register: result
|
|
|
+ until: result is succeeded
|
|
|
+
|
|
|
+ - name: Start and enable ntpd/chronyd
|
|
|
+ command: timedatectl set-ntp true
|
|
|
+ when: openshift_clock_enabled | default(True) | bool
|
|
|
+
|
|
|
- when:
|
|
|
- not openshift_is_atomic | bool
|
|
|
block:
|