Files
ansible-pull/roles/server/tasks/main.yml
rene aeaf0af01c moved editing the hosts file to role server
because only servers might be outside the home network
and connect with wireguard
2022-02-25 14:12:21 +01:00

14 lines
342 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
# vim: ts=2 sw=2