mirror of
https://github.com/planetmint/planetmint.git
synced 2025-05-19 13:26:40 +00:00
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
# Copyright © 2020 Interplanetary Database Association e.V.,
|
|
# Planetmint and IPDB software contributors.
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
---
|
|
- name: Stopping Planetmint Docker
|
|
docker_container:
|
|
name: "{{ planetmint_docker_name }}{{ item }}"
|
|
image: "{{ planetmint_image_name }}:{{ planetmint_image_tag }}"
|
|
keep_volumes: no
|
|
state: absent
|
|
force_kill: yes
|
|
with_sequence: start=1 end="{{ stack_size|int }}" stride=1
|
|
when: stack_type|lower == "docker" or stack_type|lower == "cloud"
|
|
tags: [planetmint]
|
|
|
|
- name: Get Running Planetmint Process(es)
|
|
shell: "ps aux | grep \"[b]igchaindb\" | awk '{print $2}'"
|
|
register: bdb_ps
|
|
ignore_errors: yes
|
|
when: stack_type|lower == "local"
|
|
tags: [planetmint]
|
|
|
|
- name: Kill Planetmint Process(es)
|
|
shell: "kill -9 {{ item }}"
|
|
with_items: "{{ bdb_ps.stdout_lines }}"
|
|
when: stack_type|lower == "local" and bdb_ps.stdout_lines|length > 0
|
|
tags: [planetmint]
|
|
|
|
- name: Kill auxiliary Planetmint Process(es)
|
|
shell: "pkill {{ item }}"
|
|
with_items:
|
|
- logging_server
|
|
- ws
|
|
- gunicorn
|
|
ignore_errors: yes
|
|
when: stack_type|lower == "local"
|
|
tags: [planetmint]
|