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

24 行
431B

  1. ---
  2. - setup:
  3. gather_subset: "!all"
  4. - include: setup_Debian.yml
  5. when: ansible_os_family == "Debian"
  6. #- include: gdisk.yml
  7. - name: write partition table
  8. command:
  9. parted --script
  10. {{ item.device }}
  11. -- {{ lookup('template','parted_args.j2') }}
  12. with_items: "{{ hard_disks }}"
  13. - name: sync
  14. command: sync
  15. - name: reread partition tables
  16. command: partprobe {{ item.device }}
  17. with_items: "{{ hard_disks }}"