mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix typo in svc docs
This commit is contained in:
parent
5b31feb73b
commit
a2915bff8d
1 changed files with 4 additions and 4 deletions
|
@ -163,8 +163,8 @@ This file is just mapping hosts to the roles they fulfill. Now, below is an exa
|
||||||
- restart ntpd
|
- restart ntpd
|
||||||
tags: ntp
|
tags: ntp
|
||||||
|
|
||||||
- name: be sure ntp is enabled
|
- name: be sure ntpd is running and enabled
|
||||||
service: name=ntp state=running enabled=yes
|
service: name=ntpd state=running enabled=yes
|
||||||
tags: ntp
|
tags: ntp
|
||||||
|
|
||||||
Here is an example handlers file. As a review, handlers are only fired when certain tasks report changes, and are run at the end
|
Here is an example handlers file. As a review, handlers are only fired when certain tasks report changes, and are run at the end
|
||||||
|
@ -172,8 +172,8 @@ of each play::
|
||||||
|
|
||||||
---
|
---
|
||||||
# file: common/handlers/main.yml
|
# file: common/handlers/main.yml
|
||||||
- name: restart ntp
|
- name: restart ntpd
|
||||||
service: name=ntp state=restarted
|
service: name=ntpd state=restarted
|
||||||
|
|
||||||
What This Organization Enables (Examples)
|
What This Organization Enables (Examples)
|
||||||
`````````````````````````````````````````
|
`````````````````````````````````````````
|
||||||
|
|
Loading…
Reference in a new issue