ansible-roles/roles/zabbix_proxy/tasks/upgrade.yml

11 lines
269 B
YAML
Raw Normal View History

2021-12-01 19:13:34 +01:00
---
2022-04-06 11:00:07 +02:00
- when: zabbix_proxy_rpm.changed
block:
- name: Stop the service
service: name=zabbix-proxy state=stopped
2021-12-01 19:13:34 +01:00
2022-04-06 11:00:07 +02:00
- name: Drop the SQLite database (no schema upgrade for SQLite)
file: path=/var/lib/zabbix/db/proxy.sqlite state=absent
2021-12-01 19:13:34 +01:00
tags: zabbix