fix: handler capitalization
All checks were successful
Ansible Galaxy / deploy (push) Successful in 2m7s
Ansible Lint / build (push) Successful in 2m28s

This commit is contained in:
s3lph 2024-08-11 04:15:55 +02:00
parent da505db40d
commit 65c01eee51
2 changed files with 6 additions and 4 deletions

View file

@ -8,7 +8,7 @@ namespace: s3lph
name: webserver
# The version of the collection. Must be compatible with semantic versioning
version: 0.2.3
version: 0.2.4
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md

View file

@ -58,7 +58,8 @@
owner: root
group: root
loop: "{{ apache2_sites.keys() }}"
notify: Reload apache2
ignore_errors: "{{ ansible_check_mode }}"
notify: Reload Apache2
- name: Render Apache2 global config
ansible.builtin.template:
@ -67,7 +68,7 @@
owner: root
group: root
mode: "0644"
notify: Reload apache2
notify: Reload Apache2
- name: Enable Apache2 global config
ansible.builtin.file:
@ -76,4 +77,5 @@
src: "../conf-available/99-sslconfig.conf"
owner: root
group: root
notify: Reload apache2
ignore_errors: "{{ ansible_check_mode }}"
notify: Reload Apache2