14 lines
322 B
YAML
14 lines
322 B
YAML
- hosts: platform
|
|
remote_user: root
|
|
tasks:
|
|
- name: "uninstall mrzcpd: stop mrzcpd.service"
|
|
systemd:
|
|
name: "{{ item }}"
|
|
state: stopped
|
|
with_items:
|
|
- mrzcpd.service
|
|
|
|
- name: "uninstall mrzcpd:absent mrzcpd rpm package"
|
|
yum:
|
|
name: mrzcpd
|
|
state: absent |