mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
303 B
YAML
16 lines
303 B
YAML
5 years ago
|
- name: remove zabbix repository
|
||
|
apt_repository:
|
||
|
repo: "{{ zabbix_apt_repository }}"
|
||
|
filename: zabbix
|
||
|
state: absent
|
||
|
|
||
|
- name: remove zabbix packages
|
||
|
apt:
|
||
|
name: "{{ zabbix_packages }}"
|
||
|
state: absent
|
||
|
|
||
|
- name: remove zabbix pip packages
|
||
|
pip:
|
||
|
name: zabbix-api
|
||
|
state: absent
|