您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

25 行
545B

  1. ---
  2. - name: blkid
  3. command: blkid
  4. register: blkid
  5. - name: set devices
  6. set_fact: mdraid_devices={{ _mdraid_devices }}
  7. - name: zero superblock
  8. command:
  9. mdadm --zero-superblock
  10. {{ item.devices | join(" ") }}
  11. with_items: "{{ mdraid_devices }}"
  12. - name: create
  13. command:
  14. mdadm --create
  15. {{ item.device }}
  16. --level={{ item.level | default(1) }}
  17. --raid-devices={{ item.devices | length }}
  18. --metadata={{ item.metadata | default("1.2") }}
  19. {{ item.devices | join(" ") }}
  20. with_items: "{{ mdraid_devices }}"