main.yaml 418 B

1234567891011121314151617
  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. register: result
  12. until: result | success
  13. - name: Start and enable ntpd/chronyd
  14. command: timedatectl set-ntp true
  15. when: openshift_clock_enabled | bool