Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- ---
-
- - setup:
- gather_subset: "!all"
-
- - include: setup_Debian.yml
- when: ansible_os_family == "Debian"
-
- #- include: gdisk.yml
-
- - name: write partition table
- command:
- parted --script
- {{ item.device }}
- -- {{ lookup('template','parted_args.j2') }}
- with_items: "{{ hard_disks }}"
-
- - name: sync
- command: sync
-
- - name: reread partition tables
- command: partprobe {{ item.device }}
- with_items: "{{ hard_disks }}"
|