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/tsg-201907-uninstall.yml
2019-10-29 15:24:43 +08:00

49 lines
823 B
YAML

- hosts: all
tasks:
- name: "empty rc.local"
copy:
src: rc.local
dest: /etc/rc.d/rc.local
mode: 755
- hosts: Functional_Host
tasks:
- name: "remove framework rpms"
yum:
name: framework
state: absent
- name: "remove framework files"
file:
path: /opt/MESA/
state: absent
force: 1
- hosts: blade-00
tasks:
- name: "remove certstore"
file:
path: /home/tsg/certstore-base/
state: absent
force: 1
- name: "remove kni"
file:
path: /home/tsg/kni/
state: absent
force: 1
- hosts: Slave_Host
tasks:
- name: "remove tfe rpms"
yum:
name:
- tfe
- tfe-kmod
state: absent
- name: "remove tfe"
file:
path: /home/tsg/tfe
state: absent
force: 1