Advertisement
riteshchikatwar

Untitled

Nov 13th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. - hosts: hosts
  2. remote_user: root
  3. tasks:
  4. - name: Gather self-heal facts about all gluster hosts in the cluster
  5. gluster_heal_facts:
  6. name: "{{ item }}"
  7. status_filter: self-heal
  8. register: self_heal_status
  9. retries: 2
  10. delay: 2
  11. with_items:
  12. - data
  13. # - engine
  14. # - vmstore
  15. - debug:
  16. var: self_heal_status
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement