starting tasks for jitsimeet

This commit is contained in:
2022-02-17 21:17:32 +01:00
parent 39e6425510
commit 0b3d2796a3
6 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
- name: webserver | nginx | installing nginx
package:
name: nginx
state: latest

View File

@@ -0,0 +1,12 @@
# Load distro-specific variables
- include_vars: "{{ ansible_distribution }}.yml"
tags: always
- block:
- debug:
msg: Debug
# install software
- import_tasks: install_apache.yml
when: "{{ apache }}" is true
- import_tasks: install_nginx.yml
when: "{{ nginx }}" is true