From 1d711c0159a7b8abbc7c801f9b4b2ff08a615317 Mon Sep 17 00:00:00 2001 From: zsdc Date: Sat, 23 Jan 2021 23:41:52 +0200 Subject: Added partition table type select option (MBR/GPT/hybrid) Since some of the build target platforms do not support hybrid partition table and require only MBR (AWS AMI), was added option that allows selecting a partition table type: ``` -e parrtable_type=type ``` where `type` can be one of: `mbr`, `gpt`, `hybrid`. Default value is `hybrid`. --- group_vars/all.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'group_vars') diff --git a/group_vars/all.yml b/group_vars/all.yml index bd872b5..a939096 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -13,6 +13,7 @@ vyos_read_root: /mnt/squashfs vyos_install_root: /mnt/inst_root vyos_disk_size: "{{ disk_size | default(10) }}" +vyos_parttable_type: "{{ parttable_type | default('hybrid') }}" vyos_root_fstype: ext4 vyos_target_drive: "" -- cgit v1.2.3