14 lines
248 B
YAML
14 lines
248 B
YAML
---
|
|
|
|
# execute this role
|
|
- name: "install and configure the Zabbix Agent"
|
|
hosts: "all"
|
|
become: true
|
|
|
|
# execute dependancy playbook
|
|
roles:
|
|
- role: "zabbix_prereq"
|
|
|
|
# execute this playbook
|
|
tasks:
|
|
- import_tasks: "tasks/main.yaml"
|