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/tsg_master/tasks/main.yml
2020-10-24 12:08:31 +06:00

19 lines
377 B
YAML

####################
#Uninstall tsg_master
- name: "[uninstall tsg_master] stop sapp"
systemd:
name: sapp
state: stopped
enabled: no
when:
- uninstall.tsgmaster == 1
ignore_errors: true
- name: "[uninstall tsg_master] uninstall tsg_master"
yum:
name:
- "{{ tsg_master }}"
state: absent
when: uninstall.tsgmaster == 1