mirror of https://github.com/ceph/ceph-ansible.git
29 lines
899 B
YAML
29 lines
899 B
YAML
---
|
|
- name: Set _mds_handler_called before restart
|
|
ansible.builtin.set_fact:
|
|
_mds_handler_called: true
|
|
|
|
- name: Copy mds restart script
|
|
ansible.builtin.template:
|
|
src: restart_mds_daemon.sh.j2
|
|
dest: "{{ tmpdirpath.path }}/restart_mds_daemon.sh"
|
|
owner: root
|
|
group: root
|
|
mode: "0750"
|
|
when: tmpdirpath.path is defined
|
|
|
|
- name: Restart ceph mds daemon(s)
|
|
ansible.builtin.command: /usr/bin/env bash {{ hostvars[item]['tmpdirpath']['path'] }}/restart_mds_daemon.sh
|
|
when:
|
|
- hostvars[item]['handler_mds_status'] | default(False) | bool
|
|
- hostvars[item]['_mds_handler_called'] | default(False) | bool
|
|
- hostvars[item].tmpdirpath.path is defined
|
|
with_items: "{{ groups[mds_group_name] }}"
|
|
delegate_to: "{{ item }}"
|
|
changed_when: false
|
|
run_once: true
|
|
|
|
- name: Set _mds_handler_called after restart
|
|
ansible.builtin.set_fact:
|
|
_mds_handler_called: false
|