32 lines
968 B
YAML
32 lines
968 B
YAML
---
|
|
# Copyright (C) 2016-2017 Robin Schneider <ypid@riseup.net>
|
|
# Copyright (C) 2016-2017 DebOps <https://debops.org/>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
- name: Manage and configure the Apache HTTP Server
|
|
collections: [ 'debops.debops', 'debops.roles01',
|
|
'debops.roles02', 'debops.roles03' ]
|
|
hosts: [ 'debops_service_apache' ]
|
|
become: True
|
|
|
|
environment: '{{ inventory__environment | d({})
|
|
| combine(inventory__group_environment | d({}))
|
|
| combine(inventory__host_environment | d({})) }}'
|
|
|
|
pre_tasks:
|
|
|
|
- name: Prepare apache environment
|
|
ansible.builtin.import_role:
|
|
name: 'apache'
|
|
tasks_from: 'main_env'
|
|
tags: [ 'role::apache', 'role::apache:env' ]
|
|
|
|
roles:
|
|
|
|
- role: ferm
|
|
tags: [ 'role::ferm', 'skip::ferm' ]
|
|
ferm__dependent_rules:
|
|
- '{{ apache__ferm__dependent_rules }}'
|
|
|
|
- role: apache
|
|
tags: [ 'role::apache', 'skip::apache' ]
|