aboutsummaryrefslogtreecommitdiffstats
path: root/roles/proxmox_hypervisor/tasks/chrony.yml
blob: ed9b0cef88f7230e2016f4c38a68fc63d07fcc07 (plain)
1
2
3
4
5
6
7
8
9
10
11
- name: generate chrony.conf
  template:
    src: etc/chrony/chrony.conf.j2
    dest: /etc/chrony/chrony.conf
  notify: restart chrony

- name: start chrony
  systemd:
    name: chronyd
    enabled: yes
    state: started