diff options
author | zsdc <taras@vyos.io> | 2021-01-23 23:41:52 +0200 |
---|---|---|
committer | zsdc <taras@vyos.io> | 2021-03-15 19:48:41 +0200 |
commit | 1d711c0159a7b8abbc7c801f9b4b2ff08a615317 (patch) | |
tree | 0084503c95db4791f420a7464ac781d5aacf3062 /group_vars | |
parent | 430392dc3e8385567f97f56c8107130968709227 (diff) | |
download | vyos-vm-images-1d711c0159a7b8abbc7c801f9b4b2ff08a615317.tar.gz vyos-vm-images-1d711c0159a7b8abbc7c801f9b4b2ff08a615317.zip |
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`.
Diffstat (limited to 'group_vars')
-rw-r--r-- | group_vars/all.yml | 1 |
1 files changed, 1 insertions, 0 deletions
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: "" |