added systemd as dependency
This commit is contained in:
parent
a5d4f246a4
commit
a4d4645b96
|
|
@ -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'
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in New Issue