aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/tasks/chrony.yml
blob: 2777591698a690cb096a0670b64f1fa4a544fa31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
- name: Configure chrony.conf
  copy:
    dest: '/etc/chrony.conf'
    src: chrony.conf
    owner: root
    group: root
    mode: 0644
  notify: restart chronyd

- name: Enable chronyd service
  systemd:
    name: chronyd.service
    enabled: yes
    masked: no
    state: started
  when: not chroot
- name: '- when in chroot'
  command: systemctl enable chronyd.service
  when: chroot

# vim: set ts=2 sw=2 et ft=yaml: