forked from FF-RGB/ansible
12 lines
229 B
YAML
12 lines
229 B
YAML
---
|
|
|
|
- name: Install chrony
|
|
apt: name=chrony
|
|
|
|
- name: Configure chrony
|
|
template: src=chrony.conf.j2 dest=/etc/chrony/chrony.conf
|
|
notify: Restart chrony
|
|
|
|
- name: Start chrony
|
|
service: name=chrony state=started enabled=yes
|