mirror of https://github.com/ceph/ceph-ansible.git
28 lines
811 B
YAML
28 lines
811 B
YAML
---
|
|
- name: set _nfs_handler_called before restart
|
|
set_fact:
|
|
_nfs_handler_called: True
|
|
|
|
- name: copy nfs restart script
|
|
template:
|
|
src: restart_nfs_daemon.sh.j2
|
|
dest: "{{ tmpdirpath.path }}/restart_nfs_daemon.sh"
|
|
owner: root
|
|
group: root
|
|
mode: 0750
|
|
when: tmpdirpath.path is defined
|
|
|
|
- name: restart ceph nfs daemon(s)
|
|
command: /usr/bin/env bash {{ hostvars[item]['tmpdirpath']['path'] }}/restart_nfs_daemon.sh
|
|
when:
|
|
- hostvars[item]['handler_nfs_status'] | default(False) | bool
|
|
- hostvars[item]['_nfs_handler_called'] | default(False) | bool
|
|
- hostvars[item].tmpdirpath.path is defined
|
|
with_items: "{{ groups[nfs_group_name] }}"
|
|
delegate_to: "{{ item }}"
|
|
run_once: True
|
|
|
|
- name: set _nfs_handler_called after restart
|
|
set_fact:
|
|
_nfs_handler_called: False
|