Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

25 rindas
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 }}"