]> git.proxmox.com Git - qemu-server.git/commitdiff
cloud init schema: fix indentation and overly long wording
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 19 Jan 2023 10:57:03 +0000 (11:57 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 19 Jan 2023 10:57:06 +0000 (11:57 +0100)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/QemuServer.pm

index c2f5726e353f988ba8bb6526a5d48a7f7522ea72..99242d54c80a42285ef3240cbf159b3d767e6fb4 100644 (file)
@@ -731,26 +731,23 @@ my $cicustom_fmt = {
     network => {
        type => 'string',
        optional => 1,
-       description => 'Specify a custom file containing all network data passed to the VM via'
-           .' cloud-init.',
+       description => 'To pass a custom file containing all network data to the VM via cloud-init.',
        format => 'pve-volume-id',
        format_description => 'volume',
     },
     user => {
        type => 'string',
        optional => 1,
-       description => 'Specify a custom file containing all user data passed to the VM via'
-           .' cloud-init.',
+       description => 'To pass a custom file containing all user data to the VM via cloud-init.',
        format => 'pve-volume-id',
        format_description => 'volume',
     },
     vendor => {
-    type => 'string',
-    optional => 1,
-    description => 'Specify a custom file containing all vendor data passed to the VM via'
-     .' cloud-init.',
-    format => 'pve-volume-id',
-    format_description => 'volume',
+       type => 'string',
+       optional => 1,
+       description => 'To pass a custom file containing all vendor data to the VM via cloud-init.',
+       format => 'pve-volume-id',
+       format_description => 'volume',
     },
 };
 PVE::JSONSchema::register_format('pve-qm-cicustom', $cicustom_fmt);