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_CONFIG: "{{ default_apache | combine(apache, recursive=true) }}"
|
||||||
|
|
||||||
|
APACHE_HC:
|
||||||
|
packages: ['systemd', 'apache2']
|
||||||
|
|
||||||
# site-specific config
|
# site-specific config
|
||||||
default_site_config:
|
default_site_config:
|
||||||
mode: 'serve'
|
mode: 'serve'
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
- name: Apache | Debian | Install apache
|
- name: Apache | Debian | Install apache
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
name: ['apache2']
|
name: "{{ APACHE_HC.packages }}"
|
||||||
state: present
|
state: present
|
||||||
update_cache: true
|
update_cache: true
|
||||||
tags: [base]
|
tags: [base]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue