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

27 lines
530 B
YAML

####################
#Uninstall Marsio
- name: "[uninstall marsio] stop mrzcpd"
systemd:
name: mrzcpd
state: stopped
enabled: no
when:
- uninstall.marsio == 1
ignore_errors: true
- name: "[uninstall marsio] stop mrtunnat"
systemd:
name: mrtunnat
state: stopped
enabled: no
when:
- uninstall.marsio == 1
ignore_errors: true
- name: "[uninstall marsio] uninstall mrzcpd"
yum:
name:
- "{{ mrzcpd }}"
state: absent
when: uninstall.marsio == 1