Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

25 wiersze
440B

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