]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/INotify.pm
move Network::get_active_interfaces to ProcFSTools
[pve-common.git] / src / PVE / INotify.pm
index 8cc00f80df28b0e4e94b846a6d33eb4f3ec3d890..7fb3490c452862770dcb07c7eb70e12d079444ef 100644 (file)
@@ -14,6 +14,7 @@ use Fcntl qw(:DEFAULT :flock);
 use PVE::SafeSyslog;
 use PVE::Exception qw(raise_param_exc);
 use PVE::Tools;
+use PVE::ProcFSTools;
 use Storable qw(dclone);            
 use Linux::Inotify2;
 use base 'Exporter';
@@ -785,7 +786,7 @@ my $extract_ovs_option = sub {
 sub read_etc_network_interfaces {
     my ($filename, $fh) = @_;
     my $proc_net_dev = IO::File->new('/proc/net/dev', 'r');
-    my $active = PVE::Network::get_active_interfaces();
+    my $active = PVE::ProcFSTools::get_active_network_interfaces();
     return __read_etc_network_interfaces($fh, $proc_net_dev, $active);
 }