Execution
Date 15 Dec 2025 10:19:13 +0000
Duration 00:23:12.82
Controller aio1.openstack.local
User root
Versions
Ansible 2.18.6
ara 1.7.4 / 1.7.4
Python 3.12.3
Summary
9 Hosts
618 Tasks
960 Results
108 Plays
456 Files
0 Records

File: /home/zuul/src/opendev.org/openstack/openstack-ansible-os_keystone/handlers/main.yml

---
# Copyright 2014, Rackspace US, Inc.
#
# 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.

# NOTE(noonedeadpunk): Handler with the same name is triggered from the http role
- name: Restart web server
  ansible.builtin.meta: noop
  when: false

- name: Stop uWSGI
  ansible.builtin.service:
    name: "{{ item }}"
    state: "stopped"
    daemon_reload: "{{ (ansible_facts['service_mgr'] == 'systemd') | ternary('yes', omit) }}"
  register: _stop
  until: _stop is success
  retries: 5
  delay: 2
  with_items: "{{ keystone_services.keys() | list }}"
  listen:
    - "venv changed"
    - "Restart uWSGI"

- name: Start uWSGI
  ansible.builtin.service:
    name: "{{ item }}"
    enabled: true
    state: "started"
    daemon_reload: "{{ (ansible_facts['service_mgr'] == 'systemd') | ternary('yes', omit) }}"
  register: _start
  until: _start is success
  retries: 5
  delay: 2
  with_items: "{{ keystone_services.keys() | list }}"
  listen:
    - "venv changed"
    - "Restart uWSGI"

- name: Wait for uWSGI socket to be ready
  ansible.builtin.wait_for:
    host: "{{ (keystone_use_uwsgi | bool) | ternary(keystone_uwsgi_bind_address, '127.0.0.1') }}"
    port: "{{ (keystone_use_uwsgi | bool) | ternary(keystone_service_port, keystone_uwsgi_ports['keystone-wsgi-public']['socket']) }}"
    timeout: 25
    delay: 10
  register: _wait_check
  until: _wait_check is success
  retries: 5
  listen:
    - "venv changed"
    - "Restart uWSGI"
    - "Start uWSGI"

- name: Restart Shibd
  ansible.builtin.service:
    name: "shibd"
    enabled: true
    state: "restarted"
    daemon_reload: "{{ (ansible_facts['service_mgr'] == 'systemd') | ternary('yes', omit) }}"
  register: _restart
  until: _restart is success
  retries: 5
  delay: 2

- name: Restart ssh
  ansible.builtin.service:
    name: "{{ keystone_sshd }}"
    state: "restarted"

- name: Flush all of the cache in memcached
  vars:
    nc_command:
      debian: nc -q 1 $(awk '/^\-l/ {print $2}' "/etc/memcached.conf" | awk -F, '{print $1}') $(awk '/^\-p/ {print $2}' "/etc/memcached.conf")
      redhat: nc $(awk -F '-l' '/^OPTIONS/ {print $2}' "/etc/sysconfig/memcached" | awk -F ',' '{gsub(/"/, "", $1); print $1}' | awk -F '-' '{print $1}') 11211
  ansible.builtin.shell: "echo 'flush_all' | {{ nc_command.get(ansible_facts['os_family'] | lower) }}"
  changed_when: false
  delegate_to: "{{ item }}"
  with_items: "{{ groups.memcached_all }}"
  listen: flush cache
  when:
    - keystone_flush_memcache | bool