forked from infra/ansible
9 lines
158 B
YAML
9 lines
158 B
YAML
|
---
|
||
|
|
||
|
- name: Install chrony
|
||
|
apt: name=chrony
|
||
|
|
||
|
- name: Configure chrony
|
||
|
template: src=chrony.conf.j2 dest=/etc/chrony/chrony.conf
|
||
|
notify: Restart chrony
|