Group and sort use statements according to our Perl Style guide [0]. [0] https://pve.proxmox.com/wiki/Perl_Style_Guide#Module_Dependencies
Signed-off-by: Daniel Kral <[email protected]> --- src/PVE/HA/Config.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/PVE/HA/Config.pm b/src/PVE/HA/Config.pm index 04e039e0..1199b0d4 100644 --- a/src/PVE/HA/Config.pm +++ b/src/PVE/HA/Config.pm @@ -5,12 +5,13 @@ use warnings; use JSON; -use PVE::HA::Tools; +use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file); + use PVE::HA::Groups; +use PVE::HA::Resources; use PVE::HA::Rules; use PVE::HA::Rules::ResourceAffinity qw(get_affinitive_resources); -use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file); -use PVE::HA::Resources; +use PVE::HA::Tools; my $manager_status_filename = "ha/manager_status"; my $ha_groups_config = "ha/groups.cfg"; -- 2.47.3 _______________________________________________ pve-devel mailing list [email protected] https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
