main.yaml 373 B

123456789101112131415
  1. ---
  2. - name: Determine if chrony is installed
  3. command: rpm -q chrony
  4. failed_when: false
  5. register: chrony_installed
  6. - name: Install ntp package
  7. package: name=ntp state=present
  8. when:
  9. - openshift_clock_enabled | bool
  10. - chrony_installed.rc != 0
  11. - name: Start and enable ntpd/chronyd
  12. command: timedatectl set-ntp true
  13. when: openshift_clock_enabled | bool