Refactor apache2.yml for consistency and clarity in task definitions

This commit is contained in:
2026-03-27 14:56:14 +01:00
parent a7ae583c20
commit b201a21105

View File

@@ -1,5 +1,4 @@
---
# ---
# Apache2 Server
# ---
@@ -7,31 +6,29 @@
- name: Populate service facts
ansible.builtin.service_facts:
#- name: Print service facts
# - name: Print service facts
# ansible.builtin.debug:
# var: ansible_facts.services
# when:
# - ansible_facts['services']['apache2.service']['name'] | default('not-found') != 'not-found'
- name: (apache2.yml) Ensure directory '/etc/systemd/system/apache2.service.d' is present
file:
ansible.builtin.file:
path: /etc/systemd/system/apache2.service.d
state: directory
owner: root
group: root
mode: '0755'
mode: "0755"
when:
- ansible_facts['services']['apache2.service']['name'] | default('not-found') != 'not-found'
- name: (apache2.yml) Ensure file '/etc/systemd/system/apache2.service.d/limits.conf' exists
copy:
src: 'etc/systemd/system/apache2.service.d/limits.conf'
dest: '/etc/systemd/system/apache2.service.d/limits.conf'
ansible.builtin.copy:
src: "etc/systemd/system/apache2.service.d/limits.conf"
dest: "/etc/systemd/system/apache2.service.d/limits.conf"
owner: root
group: root
mode: '0644'
mode: "0644"
notify: "Restart apache2"
when:
- ansible_facts['services']['apache2.service']['name'] | default('not-found') != 'not-found'