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/framework/tasks/main.yml

27 lines
675 B
YAML
Raw Normal View History

2020-09-25 12:12:25 +08:00
- name: "[uninstall framework] uninstall framework"
2020-09-21 18:33:10 +08:00
yum:
name:
- "{{ libcjson }}"
- "{{ libdocument }}"
- "{{ libmaatframe }}"
- "{{ libMESA_field_stat }}"
- "{{ libMESA_field_stat2 }}"
- "{{ libMESA_handle_logger }}"
- "{{ libMESA_htable }}"
- "{{ libMESA_prof_load }}"
- "{{ librdkafka }}"
- "{{ librulescan }}"
- "{{ libwiredcfg }}"
- "{{ libWiredLB }}"
- "{{ lz4 }}"
state: absent
when: uninstall.framework == 1
2020-09-25 12:12:25 +08:00
- name: "[uninstall framework] uninstall framework"
yum:
name:
- "{{ libtsglua }}"
2020-09-21 18:33:10 +08:00
state: absent
2020-09-25 12:12:25 +08:00
when: uninstall.framework == 1
ignore_errors: true