From 5102900d50f12d77ba1dfcc8e52264baf3e9dfd6 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 22 Nov 2019 18:15:25 +0100 Subject: [PATCH] rbd: group and sort module usage Signed-off-by: Thomas Lamprecht --- PVE/Storage/RBDPlugin.pm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/PVE/Storage/RBDPlugin.pm b/PVE/Storage/RBDPlugin.pm index d78a785..cddad02 100644 --- a/PVE/Storage/RBDPlugin.pm +++ b/PVE/Storage/RBDPlugin.pm @@ -2,14 +2,16 @@ package PVE::Storage::RBDPlugin; use strict; use warnings; + use IO::File; +use JSON; use Net::IP; -use PVE::Tools qw(run_command trim); -use PVE::Storage::Plugin; + +use PVE::CephConfig; use PVE::JSONSchema qw(get_standard_option); use PVE::RADOS; -use PVE::CephConfig; -use JSON; +use PVE::Storage::Plugin; +use PVE::Tools qw(run_command trim); use base qw(PVE::Storage::Plugin);