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/tasks/uninstall/uninstall_sapp.yml
2021-04-27 15:11:55 +08:00

21 lines
491 B
YAML

- hosts:
- adc_mcn0
remote_user: root
tasks:
- name: "uninstall sapp: stop sapp.service"
systemd:
name: "{{ item }}"
state: stopped
enabled: no
with_items:
- sapp.service
- name: "uninstall sapp: uninstall tcpdump_mesa rpm package"
yum:
name: tcpdump_mesa
state: absent
- name: "uninstall sapp: uninstall sapp rpm package"
yum:
name: sapp
state: absent