]> git.proxmox.com Git - pve-storage.git/commitdiff
api: get rid of moved 'usb' call
authorFabian Ebner <f.ebner@proxmox.com>
Fri, 4 Jun 2021 13:49:33 +0000 (15:49 +0200)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Tue, 8 Jun 2021 13:19:36 +0000 (15:19 +0200)
pve-manger commit bd328734deb1dcea296858bb38d085e392adb99e changed the frontend
to use the new call.

Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
PVE/API2/Storage/Scan.pm

index 15b39b50eb76a284797a73750fd7adf343dd8514..d7a87431feeeacea93c56cf1bbd5c8b00f41f524 100644 (file)
@@ -48,8 +48,6 @@ __PACKAGE__->register_method({
            { method => 'lvm' },
            { method => 'nfs' },
            { method => 'pbs' },
-           # FIXME: remove with 7.0 (replaced by /nodes/<node>/hardware/usb)
-           { method => 'usb' },
            { method => 'zfs' },
        ];
 
@@ -448,47 +446,4 @@ __PACKAGE__->register_method({
        return PVE::Storage::scan_zfs();
     }});
 
-# FIXME: remove with 7.0 (replaced by /nodes/<node>/hardware/usb)
-__PACKAGE__->register_method({
-    name => 'usbscan',
-    path => 'usb',
-    method => 'GET',
-    description => "List local USB devices.",
-    protected => 1,
-    proxyto => "node",
-    permissions => {
-       check => ['perm', '/', ['Sys.Modify']],
-    },
-    parameters => {
-       additionalProperties => 0,
-       properties => {
-           node => get_standard_option('pve-node'),
-       },
-    },
-    returns => {
-       type => 'array',
-       items => {
-           type => "object",
-           properties => {
-               busnum => { type => 'integer'},
-               class => { type => 'integer'},
-               devnum => { type => 'integer'},
-               level => { type => 'integer'},
-               manufacturer => { type => 'string', optional => 1 },
-               port => { type => 'integer'},
-               prodid => { type => 'string'},
-               product => { type => 'string', optional => 1 },
-               serial => { type => 'string', optional => 1 },
-               speed => { type => 'string'},
-               usbpath => { type => 'string', optional => 1},
-               vendid => { type => 'string'},
-           },
-       },
-    },
-    code => sub {
-       my ($param) = @_;
-
-       return PVE::SysFSTools::scan_usb();
-    }});
-
 1;