blob: 76f6264659667807d1207570eeb9c7b86895adc3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
---
- name: install openntpd
apt:
name: openntpd
state: present
- name: install openntpd configuration
template:
src: openntpd.conf.j2
dest: /etc/openntpd/ntpd.conf
notify: restart openntpd
|