This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
solutions-tsg-scripts/tasks/uninstall/uninstall_tfe.yml
2021-04-27 15:11:55 +08:00

33 lines
777 B
YAML

- hosts:
- adc_mcn1
- adc_mcn2
- adc_mcn3
remote_user: root
tasks:
- name: "uninstall tfe: stop tfe service"
systemd:
name: "{{ item }}"
state: stopped
enabled: no
with_items:
- tfe.service
- name: "uninstall tfe: stop tfe-env service"
systemd:
name: "{{ item }}"
state: stopped
enabled: no
with_items:
- tfe-env.service
- name: "uninstall tfe: delete memory.conf"
file:
path: "{{ item }}"
state: absent
with_items:
- /etc/systemd/system/tfe.service.d/require-mrzcpd.conf
- name: "uninstall tfe: uninstall tfe rpm package"
yum:
name: tfe
state: absent