This commit is contained in:
zhangzhihan
2020-09-25 12:12:25 +08:00
parent 4177c779ef
commit b57e742be8
41 changed files with 638 additions and 1561 deletions

View File

@@ -0,0 +1,26 @@
####################
#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