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/certstore/tasks/main.yml
zhangzhihan b57e742be8 update
2020-09-25 12:12:25 +08:00

17 lines
322 B
YAML

- name: "[uninstall certstore] stop certstore"
systemd:
name: certstore
state: stopped
enabled: no
when:
- uninstall.certstore == 1
ignore_errors: true
- name: "[uninstall certstore] uninstall certstore"
yum:
name:
- "{{ certstore }}"
state: absent
when: uninstall.certstore == 1