]> git.proxmox.com Git - pve-network.git/commitdiff
use statements cleanup
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 8 Oct 2020 09:11:04 +0000 (11:11 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 8 Oct 2020 09:11:04 +0000 (11:11 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/Network/SDN/SubnetPlugin.pm
PVE/Network/SDN/Subnets.pm
PVE/Network/SDN/VnetPlugin.pm
PVE/Network/SDN/Vnets.pm

index cb0f4ef7b44e51f396780105f77b276c91cd3e9c..2d6d8082a59b26729b5cb15117b6566c3411fb4f 100644 (file)
@@ -3,14 +3,16 @@ package PVE::Network::SDN::SubnetPlugin;
 use strict;
 use warnings;
 
+use Net::IP;
+use Net::Subnet qw(subnet_matcher);
+
 use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
-use base qw(PVE::SectionConfig);
-use PVE::JSONSchema qw(get_standard_option);
 use PVE::Exception qw(raise raise_param_exc);
-use Net::Subnet qw(subnet_matcher);
-use PVE::Network::SDN::Vnets;
+use PVE::JSONSchema qw(get_standard_option);
 use PVE::Network::SDN::Ipams;
-use Net::IP;
+use PVE::Network::SDN::Vnets;
+
+use base qw(PVE::SectionConfig);
 
 PVE::Cluster::cfs_register_file('sdn/subnets.cfg',
                                  sub { __PACKAGE__->parse_config(@_); },
index 09aa94283e8a6a95d1949daf5d43a72bf0ef2c2d..74a538c647053c76c81433b71f18112dcec50f41 100644 (file)
@@ -4,11 +4,12 @@ use strict;
 use warnings;
 
 use Net::Subnet qw(subnet_matcher);
-use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
 use Net::IP;
 
-use PVE::Network::SDN::Ipams;
+use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
 use PVE::Network::SDN::Dns;
+use PVE::Network::SDN::Ipams;
+
 use PVE::Network::SDN::SubnetPlugin;
 PVE::Network::SDN::SubnetPlugin->register();
 PVE::Network::SDN::SubnetPlugin->init();
index cac578aa9269bf19cc0c3f05152ca61d7b469122..34841ae5edb776fb1c71a5c336508f3199fd7e14 100644 (file)
@@ -4,9 +4,11 @@ use strict;
 use warnings;
 
 use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
-use base qw(PVE::SectionConfig);
-use PVE::JSONSchema qw(get_standard_option);
 use PVE::Exception qw(raise raise_param_exc);
+use PVE::JSONSchema qw(get_standard_option);
+
+use PVE::SectionConfig;
+use base qw(PVE::SectionConfig);
 
 PVE::Cluster::cfs_register_file('sdn/vnets.cfg',
                                  sub { __PACKAGE__->parse_config(@_); },
index 5616419c300573aa7ee91e94a4a03a05efa5f74b..8cf5ac419c82e328f751376c2a5575c09648b442 100644 (file)
@@ -3,8 +3,9 @@ package PVE::Network::SDN::Vnets;
 use strict;
 use warnings;
 
-use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
 use Net::IP;
+
+use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
 use PVE::Network::SDN::Subnets;
 use PVE::Network::SDN::Zones;