]> git.proxmox.com Git - pve-common.git/commitdiff
api dump: do not skip indexed params with only one index
authorDominik Csapak <d.csapak@proxmox.com>
Mon, 23 Jul 2018 10:11:09 +0000 (12:11 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 23 Jul 2018 14:11:21 +0000 (16:11 +0200)
We transform indexed parameters (like scsi0 scsi1 ...) to a single
scsi[n]. The check if we should transform did not handle the case
where a parameter was indexed but (currently) only index 0 existed.
Such definitions where simply skipped and seemed then to miss from
places using the API dump, like the api-viewer.

We now only skip those parameters with an index > 0 where the same
parameter with index 0 is defined.

This fixes a missing efidisk0 entry in an API dump[0].

[0]: https://forum.proxmox.com/threads/efidisk0-creation-missing-from-api.45624/

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/PVE/RESTHandler.pm

index 5d0c03d0d92ee1ee18d16fbc94540fab307e5ce1..205e6efd130bf6d2e6079d67efc1742277b67f64 100644 (file)
@@ -37,7 +37,7 @@ sub api_clone_schema {
                my ($name, $idx) = ($1, $2);
                if ($idx == 0 && defined($d->{"${name}1"})) {
                    $p = "${name}[n]";
-               } elsif (defined($d->{"${name}0"})) {
+               } elsif ($idx > 0 && defined($d->{"${name}0"})) {
                    next; # only handle once for -xx0, but only if -xx0 exists
                }
            }