diff options
author | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2018-10-26 01:08:04 +0900 |
---|---|---|
committer | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2018-10-26 01:08:04 +0900 |
commit | 88832a6324731f9357aa301adc70ef8448d6bc9f (patch) | |
tree | 922185a6811597b16dfb833c1fd77dec27fd2075 | |
parent | bdb662a0d68777e87467a3a83f471dff225040ee (diff) | |
download | vyos-vm-images-88832a6324731f9357aa301adc70ef8448d6bc9f.tar.gz vyos-vm-images-88832a6324731f9357aa301adc70ef8448d6bc9f.zip |
vmware: add ovf:transport to VirtualHardwareSection
-rw-r--r-- | group_vars/all.yml | 2 | ||||
-rw-r--r-- | roles/vmware-ova/templates/vyos_vmware_image.ovf.j2 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/group_vars/all.yml b/group_vars/all.yml index 67bb89d..2e1c25b 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -12,7 +12,7 @@ vyos_write_root: /mnt/wroot vyos_read_root: /mnt/squashfs vyos_install_root: /mnt/inst_root -vyos_disk_size: 1 +vyos_disk_size: 10 vyos_root_fstype: ext4 vyos_target_drive: "" diff --git a/roles/vmware-ova/templates/vyos_vmware_image.ovf.j2 b/roles/vmware-ova/templates/vyos_vmware_image.ovf.j2 index 76ebbcf..c3d6145 100644 --- a/roles/vmware-ova/templates/vyos_vmware_image.ovf.j2 +++ b/roles/vmware-ova/templates/vyos_vmware_image.ovf.j2 @@ -19,7 +19,7 @@ <OperatingSystemSection ovf:id="1" vmw:osType="other26xLinux64Guest"> <Info>The kind of installed guest operating system</Info> </OperatingSystemSection> - <VirtualHardwareSection> + <VirtualHardwareSection ovf:transport="com.vmware.guestInfo" ovf:required="false"> <Info>Virtual hardware requirements</Info> <System> <vssd:ElementName>Virtual Hardware Family</vssd:ElementName> |