diff options
| author | zhangzhihan <[email protected]> | 2020-09-25 16:05:10 +0800 |
|---|---|---|
| committer | zhangzhihan <[email protected]> | 2020-09-25 16:05:10 +0800 |
| commit | ac1e11b72239515e831837f26846d9f1ccea0bbf (patch) | |
| tree | 6954a38aeb9454b7a5d1b07c81887ad0430c4e54 /uninstall | |
| parent | 03b37a86d85ac51fb91ff2dbbeb5f5d631203b09 (diff) | |
update
Diffstat (limited to 'uninstall')
| -rw-r--r-- | uninstall/roles/firewall/tasks/main.yml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/uninstall/roles/firewall/tasks/main.yml b/uninstall/roles/firewall/tasks/main.yml index f8e9968..7b36ca3 100644 --- a/uninstall/roles/firewall/tasks/main.yml +++ b/uninstall/roles/firewall/tasks/main.yml @@ -39,16 +39,31 @@ state: absent when: uninstall.firewall == 1 -- name: "[uninstall firewall] uninstall firewall" +- name: "[uninstall firewall] uninstall fw_quic" yum: name: - "{{ fw_quic }}" + state: absent + when: uninstall.firewall == 1 + ignore_errors: true + +- name: "[uninstall firewall] uninstall tsg_conn_record" + yum: + name: - "{{ tsg_conn_record }}" + state: absent + when: uninstall.firewall == 1 + ignore_errors: true + +- name: "[uninstall firewall] uninstall tsg_conn_sketch" + yum: + name: - "{{ tsg_conn_sketch }}" state: absent when: uninstall.firewall == 1 ignore_errors: true + - name: "[uninstall firewall] remove /home/mesasoft/sapp_runetc" file: path: /home/mesasoft/sapp_runetc |
