summaryrefslogtreecommitdiff
path: root/test/integration/targets/setup_mongodb_v4/handlers/main.yml
blob: f3379859df441115731e3c5d1b10d389c701b4d1 (plain)
1
2
3
4
5
6
7
8
9
10
- name: Remove MongoDB packages
  yum:
    name: '{{ mongodb_pkgs }}'
    state: absent

- name: Stop MongoDB
  systemd:
    name: mongod.service
    state: stopped
  notify: Stop MongoDB