summaryrefslogtreecommitdiffstats
path: root/roles/openshift_clock/tasks/main.yaml
blob: 3911201ea249354ff7cc61eaad79de72fb855aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- name: Set clock facts
  openshift_facts:
    role: clock
    local_facts:
      enabled: "{{ openshift_clock_enabled | default(None) }}"

- name: Install ntp package
  package: name=ntp state=present
  when: openshift.clock.enabled | bool and not openshift.clock.chrony_installed | bool

- name: Start and enable ntpd/chronyd
  shell: timedatectl set-ntp true
  when: openshift.clock.enabled | bool