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/uninstall/roles/tfe/tasks/main.yml
zhangzhihan 4ae7c7e329 update
2020-09-28 21:55:04 +08:00

28 lines
493 B
YAML

####################
#Uninstall tfe
- name: "[uninstall tfe] stop tfe"
systemd:
name: tfe
state: stopped
enabled: no
when:
- uninstall.tfe == 1
ignore_errors: true
- name: "[uninstall tfe] stop tfe-env"
systemd:
name: tfe-env
state: stopped
enabled: no
when:
- uninstall.tfe == 1
ignore_errors: true
- name: "[uninstall tfe] uninstall tfe"
yum:
name:
- "{{ tfe }}"
- "{{ tfe_kmod }}"
state: absent
when: uninstall.tfe == 1