ansible-playbooks/roles/core/tasks/time.yml

20 lines
288 B
YAML
Raw Permalink Normal View History

2018-04-13 18:06:12 -04:00
---
2018-04-17 20:50:32 -04:00
- name: Set timezone to America/Toronto
timezone:
name: America/Toronto
2018-04-13 18:06:12 -04:00
- name: Install ntp
apt:
name: ntp
cache_valid_time: 3600
notify:
- Start ntp
- name: Copy ntp configuration
copy:
src: ntp.conf
dest: /etc/ntp.conf
notify:
- Restart ntp