--- # Copyright 2020 Red Hat, Inc. # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. - name: "Stop and disable systemd timer for {{ container_systemd_healthcheck_name }}" systemd: state: stopped name: "tripleo_{{ container_systemd_healthcheck_name }}_healthcheck.timer" enabled: false daemon_reload: false - name: "Remove systemd healthcheck files for {{ container_systemd_healthcheck_name }}" file: path: "{{ container_systemd_healthcheck_file }}" state: absent loop: - "/etc/systemd/system/tripleo_{{ container_systemd_healthcheck_name }}_healthcheck.service" - "/etc/systemd/system/tripleo_{{ container_systemd_healthcheck_name }}_healthcheck.timer" loop_control: loop_var: container_systemd_healthcheck_file - name: Force systemd to re-read config after healthcheck removals systemd: daemon_reload: true - name: "Check if {{ container_systemd_healthcheck_name }} healthcheck is not running" command: "systemctl is-active --quiet tripleo_{{ container_systemd_healthcheck_name }}_healthcheck.timer" register: tripleo_healthcheck_result failed_when: - tripleo_healthcheck_result.rc == 0 - name: "Check if {{ container_systemd_healthcheck_name }} service is running and healthy" command: "systemctl is-active --quiet tripleo_{{ container_systemd_healthcheck_name }}.service" register: tripleo_service_result failed_when: - tripleo_service_result.rc != 0