packer-qemu/packer/assets/ansible/roles/setup/tasks/partition.yml

13 lines
205 B
YAML
Raw Normal View History

---
# partition disk to install gentoo
- name: "Create a new primary partition for LVM"
parted:
2020-02-18 07:09:23 +00:00
device: /dev/sda
name: "root"
label: gpt
number: 1
flags: [ lvm ]
state: present