🚨 Fix linter warnings of type 'name[casing]'

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.
This commit is contained in:
Alexander Dahl 2025-03-01 21:21:22 +01:00
parent 266ba39473
commit 8b2ab7753d
21 changed files with 42 additions and 42 deletions
roles/apache_letsencrypt
handlers
tasks

View file

@ -1,6 +1,6 @@
# Handlers for role apache_letsencrypt
---
- name: restart apache2
- name: Restart apache2
service:
name: apache2
state: restarted

View file

@ -7,7 +7,7 @@
mode: "0644"
owner: root
group: root
notify: restart apache2
notify: Restart apache2
- name: Add symlink to enable configuration
ansible.builtin.file:
@ -17,4 +17,4 @@
mode: "0644"
owner: root
group: root
notify: restart apache2
notify: Restart apache2