28 lines
493 B
YAML
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
|