diff options
author | Sandor Zeestraten <sandor@zeestrataca.com> | 2017-07-12 11:24:01 +0200 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-07-17 09:40:23 -0400 |
commit | fc89390408991021ea90885cc145afd7c1ed6069 (patch) | |
tree | 9a8d624887d6d4dcf81295e137344e9e05cbdd84 /doc/examples | |
parent | b6c478e07008819ea1a69a666f3a97c89f457e19 (diff) | |
download | vyos-cloud-init-fc89390408991021ea90885cc145afd7c1ed6069.tar.gz vyos-cloud-init-fc89390408991021ea90885cc145afd7c1ed6069.zip |
doc: fix disk setup example table_type options
This fixes the disk setup example doc which specifies that the only
currently supported table_type option is 'mbr' by adding the 'gpt'
option which got supported as of 0.7.7.
LP: #1703789
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/cloud-config-disk-setup.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/examples/cloud-config-disk-setup.txt b/doc/examples/cloud-config-disk-setup.txt index 38ad0528..dd91477d 100644 --- a/doc/examples/cloud-config-disk-setup.txt +++ b/doc/examples/cloud-config-disk-setup.txt @@ -98,11 +98,11 @@ disk_setup: # # table_type=<TYPE>: Currently the following are supported: # 'mbr': default and setups a MS-DOS partition table +# 'gpt': setups a GPT partition table # -# Note: At this time only 'mbr' partition tables are allowed. -# It is anticipated in the future that we'll have GPT as -# option in the future, or even "RAID" to create a mdadm -# RAID. +# Note: At this time only 'mbr' and 'gpt' partition tables +# are allowed. It is anticipated in the future that +# we'll also have "RAID" to create a mdadm RAID. # # layout={...}: The device layout. This is a list of values, with the # percentage of disk that partition will take. |