main.yaml 405 B

1234567891011121314
  1. ---
  2. - name: Set clock facts
  3. openshift_facts:
  4. role: clock
  5. local_facts:
  6. enabled: "{{ openshift_clock_enabled | default(None) }}"
  7. - name: Install ntp package
  8. package: name=ntp state=present
  9. when: openshift.clock.enabled | bool and not openshift.clock.chrony_installed | bool
  10. - name: Start and enable ntpd/chronyd
  11. shell: timedatectl set-ntp true
  12. when: openshift.clock.enabled | bool