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/remove_tfe_files/tasks/main.yml
zhangzhihan b57e742be8 update
2020-09-25 12:12:25 +08:00

29 lines
604 B
YAML

- name: "remove /opt/tsg/tfe"
file:
path: /opt/tsg/tfe
state: absent
when: remove.tfe == 1
ignore_errors: true
- name: "remove tfe.service"
file:
path: /usr/lib/systemd/system/tfe.service
state: absent
when: remove.tfe == 1
ignore_errors: true
- name: "remove tfe-env.service"
file:
path: /usr/lib/systemd/system/tfe-env.service
state: absent
when: remove.tfe == 1
ignore_errors: true
- name: "remove tfe-env-tun-mode.service"
file:
path: /usr/lib/systemd/system/tfe-env-tun-mode.service
state: absent
when: remove.tfe == 1
ignore_errors: true