summaryrefslogtreecommitdiff
path: root/test/integration/targets/mongodb_replicaset/tasks/mongod_teardown.yml
blob: 7bc5d3d0a0ada67f26ee8fbbaabc2e16f0e714b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
- name: Kill all mongod processes
  command: pkill  -{{ kill_signal }} mongod
  ignore_errors: true

- name: Getting pids for mongod
  pids:
      name: mongod
  register: pids_of_mongod

- name: Wait for all mongod processes to exit
  wait_for:
    path: "/proc/{{ item }}/status"
    state: absent
    delay: 1
  with_items: "{{ pids_of_mongod }}"

- name: Remove all mongod folders
  file:
    path: "{{ remote_tmp_dir }}/{{ item }}"
    state: absent
  with_items:
    - mongod3001
    - mongod3002
    - mongod3003

- name: Remove all mongod sock files
  shell: rm -Rf /tmp/mongodb*.sock