1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #3439 from eest/bestpractices_templates_fix

Fix path to ntp.conf.j2 in example.
This commit is contained in:
Michael DeHaan 2013-07-11 05:31:25 -07:00
commit 324a28f3dd

View file

@ -162,7 +162,7 @@ Below is an example tasks file, that explains how a role works. Our common role
tags: ntp
- name: be sure ntp is configured
template: src=common/templates/ntp.conf.j2 dest=/etc/ntp.conf
template: src=ntp.conf.j2 dest=/etc/ntp.conf
notify:
- restart ntpd
tags: ntp