🚨 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/setup_http_site_proxy/tasks

View file

@ -4,10 +4,10 @@
src: templates/apache-docker-proxy-site.j2
dest: /etc/apache2/sites-available/{{ site_name }}.conf
mode: "0644"
notify: restart apache2
notify: Restart apache2
- name: Activate Apache2 site
command: a2ensite {{ site_name }}
args:
creates: /etc/apache2/sites-enabled/{{ site_name }}.conf
notify: restart apache2
notify: Restart apache2