From b0373adc714b5195ba88facc2f00ac71ee51ffc5 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 5 Feb 2020 17:13:30 +0100 Subject: [PATCH] directory/cephfs: sort module usage Signed-off-by: Thomas Lamprecht --- PVE/API2/Disks/Directory.pm | 6 +++--- PVE/Storage/CephFSPlugin.pm | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/PVE/API2/Disks/Directory.pm b/PVE/API2/Disks/Directory.pm index 4c74776..ae9d58a 100644 --- a/PVE/API2/Disks/Directory.pm +++ b/PVE/API2/Disks/Directory.pm @@ -5,11 +5,11 @@ use warnings; use PVE::Diskmanage; use PVE::JSONSchema qw(get_standard_option); -use PVE::API2::Storage::Config; +use PVE::RESTHandler; +use PVE::RPCEnvironment; use PVE::Tools qw(run_command trim file_set_contents file_get_contents dir_glob_foreach lock_file); -use PVE::RPCEnvironment; -use PVE::RESTHandler; +use PVE::API2::Storage::Config; use base qw(PVE::RESTHandler); diff --git a/PVE/Storage/CephFSPlugin.pm b/PVE/Storage/CephFSPlugin.pm index 64ca03d..e6add16 100644 --- a/PVE/Storage/CephFSPlugin.pm +++ b/PVE/Storage/CephFSPlugin.pm @@ -7,11 +7,11 @@ use IO::File; use Net::IP; use File::Path; -use PVE::Tools qw(run_command file_set_contents); +use PVE::CephConfig; +use PVE::JSONSchema qw(get_standard_option); use PVE::ProcFSTools; use PVE::Storage::Plugin; -use PVE::JSONSchema qw(get_standard_option); -use PVE::CephConfig; +use PVE::Tools qw(run_command file_set_contents); use base qw(PVE::Storage::Plugin);