added systemd as dependency

This commit is contained in:
AnsibleGuy 2022-02-06 20:57:21 +01:00
parent a5d4f246a4
commit a4d4645b96
2 changed files with 4 additions and 1 deletions

View File

@ -98,6 +98,9 @@ default_apache:
APACHE_CONFIG: "{{ default_apache | combine(apache, recursive=true) }}"
APACHE_HC:
packages: ['systemd', 'apache2']
# site-specific config
default_site_config:
mode: 'serve'

View File

@ -2,7 +2,7 @@
- name: Apache | Debian | Install apache
ansible.builtin.apt:
name: ['apache2']
name: "{{ APACHE_HC.packages }}"
state: present
update_cache: true
tags: [base]