Files
ansible-pull/roles/server/tasks/main.yml
rene 64bbb73b71 moved user tasks to an own file
so they can be called from other roles
2022-02-25 14:59:09 +01:00

18 lines
398 B
YAML

---
# Load distro specific variables
- include_vars: "{{ ansible_distribution }}.yml"
tags: always
- block:
- import_tasks: system_setup/hosts.yml
- include_tasks: utilities/netdata.yml
when: netdata is defined and netdata == true
- include_tasks: utilities/snmpd.yml
- include_tasks: utilities/wireguard.yml
- include_role:
name: base
tasks_from: users
# vim: ts=2 sw=2