diff options
author | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2016-03-07 23:47:39 +0900 |
---|---|---|
committer | Yuya Kusakabe <yuya.kusakabe@gmail.com> | 2016-03-07 23:47:39 +0900 |
commit | 01083886e1e861378ce16195c9ad76c1d5ce3e4a (patch) | |
tree | f669adcf915879f4b51848cc628e496cb885e97b /scripts/template.ovf | |
parent | df70d5d1779d6a5c5cc027a80d2e9440d517eff2 (diff) | |
download | vyos-build-01083886e1e861378ce16195c9ad76c1d5ce3e4a.tar.gz vyos-build-01083886e1e861378ce16195c9ad76c1d5ce3e4a.zip |
Add product section to VMware OVF (ref T14).
Diffstat (limited to 'scripts/template.ovf')
-rw-r--r-- | scripts/template.ovf | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/template.ovf b/scripts/template.ovf index 7e341c3e..b7c9aa32 100644 --- a/scripts/template.ovf +++ b/scripts/template.ovf @@ -5,7 +5,7 @@ </References> <DiskSection> <Info>Virtual disk information</Info> - <Disk ovf:capacity="4" ovf:capacityAllocationUnits="byte * 2^30" ovf:diskId="vmdisk1" ovf:fileRef="file1" ovf:format="http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized" ovf:populatedSize="0"/> + <Disk ovf:capacity="4" ovf:capacityAllocationUnits="byte * 2^30" ovf:diskId="vmdisk1" ovf:fileRef="file1" ovf:format="http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized" ovf:populatedSize="{{vmdk_populated_size}}"/> </DiskSection> <NetworkSection> <Info>The list of logical networks</Info> @@ -111,5 +111,11 @@ <vmw:Config ovf:required="false" vmw:key="powerOpInfo.resetType" vmw:value="soft"/> <vmw:Config ovf:required="false" vmw:key="powerOpInfo.suspendType" vmw:value="soft"/> </VirtualHardwareSection> + <ProductSection> + <Info>VyOS is a Linux-based network operating system that provides software-based network routing, firewall, and VPN functionality.</Info> + <Product>VyOS</Product> + <Vendor>VyOS maintainers and contributors</Vendor> + <Version>{{version}}</Version> + </ProductSection> </VirtualSystem> </Envelope> |