2019-10-10 01:58:33 +08:00
|
|
|
---
|
|
|
|
- name: set _mds_handler_called before restart
|
|
|
|
set_fact:
|
|
|
|
_mds_handler_called: True
|
|
|
|
|
|
|
|
- name: copy mds restart script
|
|
|
|
template:
|
|
|
|
src: restart_mds_daemon.sh.j2
|
2019-11-29 01:28:53 +08:00
|
|
|
dest: "{{ tmpdirpath.path }}/restart_mds_daemon.sh"
|
2019-10-10 01:58:33 +08:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: 0750
|
|
|
|
|
|
|
|
- name: restart ceph mds daemon(s)
|
2019-11-29 01:28:53 +08:00
|
|
|
command: /usr/bin/env bash {{ hostvars[item]['tmpdirpath']['path'] }}/restart_mds_daemon.sh
|
2019-10-10 01:58:33 +08:00
|
|
|
when:
|
2019-12-19 18:29:41 +08:00
|
|
|
- hostvars[item]['handler_mds_status'] | default(False) | bool
|
2019-10-10 01:58:33 +08:00
|
|
|
- hostvars[item]['_mds_handler_called'] | default(False) | bool
|
|
|
|
with_items: "{{ groups[mds_group_name] }}"
|
|
|
|
delegate_to: "{{ item }}"
|
|
|
|
run_once: True
|
|
|
|
|
|
|
|
- name: set _mds_handler_called after restart
|
|
|
|
set_fact:
|
|
|
|
_mds_handler_called: False
|