From e3eb131ec5150867a88260b73182d804fda1a32a Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 29 Sep 2020 05:08:57 +0200 Subject: [PATCH] zfs pool: clean up use statements Signed-off-by: Thomas Lamprecht --- PVE/Storage/ZFSPoolPlugin.pm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/PVE/Storage/ZFSPoolPlugin.pm b/PVE/Storage/ZFSPoolPlugin.pm index 215b703..4f8df5e 100644 --- a/PVE/Storage/ZFSPoolPlugin.pm +++ b/PVE/Storage/ZFSPoolPlugin.pm @@ -2,12 +2,14 @@ package PVE::Storage::ZFSPoolPlugin; use strict; use warnings; + use IO::File; -use POSIX; -use PVE::Tools qw(run_command); -use PVE::Storage::Plugin; -use PVE::RPCEnvironment; use Net::IP; +use POSIX; + +use PVE::RPCEnvironment; +use PVE::Storage::Plugin; +use PVE::Tools qw(run_command); use base qw(PVE::Storage::Plugin);