blob: 76b53a75ed0dc7cc2729487ddf5f0bdb591a1c9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---
- hosts: sled-mcn0
tasks:
- name: "stop sapp service"
service:
name: sapp
state: stopped
ignore_errors: yes
- name: "stop houyi service"
service:
name: houyi
state: stopped
ignore_errors: yes
# - name: "uninstall sapp"
# yum:
# name: "sapp"
# state: absent
- name: "uninstall houyi"
yum:
name: "houyi"
state: absent
- name: "uninstall houyi-common-tools"
yum:
name: "houyi-common-tools"
state: absent
- name: "uninstall houyi-plug"
yum:
name: "houyi-plug"
state: absent
- name: "uninstall net_flood"
yum:
name: "net_flood"
state: absent
|