partitions.yml 621 Bytes
---
- hosts: new-host
  become: true
  tasks:
      - name: Create partiton
        parted:
          device: "{{ item.device }}"
          number: "{{ item.number }}"
          part_end: "{{ item.end }}"
          part_start: "{{ item.start }}"
          state: present
#          part_type: logical
        with_items:
          - { device: "/dev/vdc", number: "1", start:  "0%", end:  "40%" }
          - { device: "/dev/vdc", number: "2", start:  "41%", end: "80%" }
          - { device: "/dev/vdc", number: "3", start:  "81%", end: "90%" }
          - { device: "/dev/vdc", number: "4", start: "91%", end: "100%" }