13 lines
335 B
YAML
13 lines
335 B
YAML
---
|
|
- hosts: all
|
|
become: true
|
|
tasks:
|
|
|
|
- include: ~/git/ansible_vagrant/tasks/install-zabbix_agent.yml
|
|
- include: ~/git/ansible_vagrant/tasks/configure-zabbix_agent.yml
|
|
- include: ~/git/ansible_vagrant/tasks/service-zabbix_agent.yml
|
|
|
|
handlers:
|
|
- name: restart zabbix-agent
|
|
service: name=zabbix-agent state=restarted
|