r/apache-base: Factor out handlers for reuse

Roles that need to reload or restart Apache after writing configuration
files do not necessarily need to depend on the _apache_ role, but may
assume Apache is deployed in some other way.  To support this, I have
factored out the handlers from the _apache_ role into an _apache-base_
role, which such roles can list as a dependency.
This commit is contained in:
2025-12-03 22:23:36 -06:00
parent fd8cc42720
commit cc288a4ee3
3 changed files with 10 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
- name: restart httpd
service:
name: httpd
state: restarted
- name: reload httpd
service:
name: httpd
state: reloaded

View File

@@ -1,11 +1,3 @@
- name: restart httpd
service:
name=httpd
state=restarted
- name: reload httpd
service:
name=httpd
state=reloaded
- name: save firewalld configuration
command:
firewall-cmd --runtime-to-permanent

View File

@@ -2,3 +2,4 @@ dependencies:
- role: logrotate
tags:
- logrotate
- role: apache-base