17 lines
410 B
YAML
17 lines
410 B
YAML
# Load distro-specific variables
|
|
- include_vars: "{{ ansible_distribution }}.yml"
|
|
tags: always
|
|
|
|
- block:
|
|
- debug:
|
|
msg: Debug
|
|
# install software
|
|
- import_tasks: install_apache.yml
|
|
when: apache == true
|
|
- import_tasks: install_nginx.yml
|
|
when: nginx == true
|
|
- name: webserver | certbot | install certbot
|
|
package:
|
|
name: certbot
|
|
state: latest
|
|
- import_tasks: apps/apps.yml |