選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

31 行
715B

  1. ---
  2. - name: set default partitions
  3. set_fact:
  4. hard_disks: "{{ _hard_disks }}"
  5. - name: clear all partition table informations from disks
  6. command:
  7. sgdisk
  8. --clear
  9. {{ item.device }}
  10. with_items: "{{ hard_disks }}"
  11. - name: create new partition table information
  12. command:
  13. sgdisk
  14. "--new={{ item.1.partnum }}:{{ item.1.start }}:{{ item.1.end }}"
  15. "--change-name={{ item.1.partnum }}:{{ item.1.name }}"
  16. "--typecode={{ item.1.partnum }}:{{ item.1.typecode }}"
  17. {{ item.0.device }}
  18. with_subelements:
  19. - "{{ hard_disks }}"
  20. - partitions
  21. - name: sync
  22. command: sync
  23. - name: reread partition tables
  24. command: hdparm -z {{ item.device }}
  25. with_items: "{{ hard_disks }}"