ansible/test/integration/targets/setup_mongodb_v4/handlers/main.yml
Andrew Klychkov 0bb2d67562
add new module mongodb_info (#67846)
* add new module mongodb_info

* fix doc and examples

* add GPL info

* use LooseVersion in the function doc string
2020-02-29 15:37:52 +01:00

10 lines
188 B
YAML

- name: Remove MongoDB packages
yum:
name: '{{ mongodb_pkgs }}'
state: absent
- name: Stop MongoDB
systemd:
name: mongod.service
state: stopped
notify: Stop MongoDB