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/tasks/uninstall/uninstall_certstore.yml
2021-04-27 15:11:55 +08:00

23 lines
593 B
YAML

- hosts:
- adc_mcn0
remote_user: root
tasks:
- name: "uninstall certstore: stop certstore service"
systemd:
name: "{{ item }}"
state: stopped
enabled: no
with_items:
- certstore.service
- name: "uninstall certstore: delete memory.conf"
file:
path: "{{ item }}"
state: absent
with_items:
- /etc/systemd/system/certstore.service.d/memory.conf
- name: "uninstall certstore: uninstall certstore rpm package"
yum:
name: certstore
state: absent