fix: handler capitalization
This commit is contained in:
parent
da505db40d
commit
65c01eee51
2 changed files with 6 additions and 4 deletions
|
@ -8,7 +8,7 @@ namespace: s3lph
|
||||||
name: webserver
|
name: webserver
|
||||||
|
|
||||||
# The version of the collection. Must be compatible with semantic versioning
|
# 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
|
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
|
||||||
readme: README.md
|
readme: README.md
|
||||||
|
|
|
@ -58,7 +58,8 @@
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
loop: "{{ apache2_sites.keys() }}"
|
loop: "{{ apache2_sites.keys() }}"
|
||||||
notify: Reload apache2
|
ignore_errors: "{{ ansible_check_mode }}"
|
||||||
|
notify: Reload Apache2
|
||||||
|
|
||||||
- name: Render Apache2 global config
|
- name: Render Apache2 global config
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
|
@ -67,7 +68,7 @@
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: "0644"
|
mode: "0644"
|
||||||
notify: Reload apache2
|
notify: Reload Apache2
|
||||||
|
|
||||||
- name: Enable Apache2 global config
|
- name: Enable Apache2 global config
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
|
@ -76,4 +77,5 @@
|
||||||
src: "../conf-available/99-sslconfig.conf"
|
src: "../conf-available/99-sslconfig.conf"
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
notify: Reload apache2
|
ignore_errors: "{{ ansible_check_mode }}"
|
||||||
|
notify: Reload Apache2
|
||||||
|
|
Loading…
Reference in a new issue