ansible-lint reads like this: name[casing]: All names should start with an uppercase letter. While at it: Some task/handler names were slightly adapted to better match what should be done.
10 lines
265 B
YAML
10 lines
265 B
YAML
# handlers file for cron-dd24-dyndns
|
|
---
|
|
- name: Reload cron
|
|
ansible.builtin.shell:
|
|
cmd: service cron reload
|
|
warn: no
|
|
# Use the shell call because the task sometimes has problems finding the service state
|
|
# service:
|
|
# name: cron
|
|
# state: restarted
|