[pve-devel] [PATCH 11/16] read_etc_interfaces: missing iface initialization

Wolfgang Bumiller w.bumiller at proxmox.com
Wed Jun 24 14:33:25 CEST 2015


If no 'auto' line was read the interface hash has to be
initialized.
---
 src/PVE/INotify.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/PVE/INotify.pm b/src/PVE/INotify.pm
index 57d7e6f..0675538 100644
--- a/src/PVE/INotify.pm
+++ b/src/PVE/INotify.pm
@@ -827,7 +827,7 @@ sub __read_etc_network_interfaces {
 	    my $f = { method => $3 }; # by family, merged to $d with a $suffix
 	    (my $suffix = $family) =~ s/^inet//;
 
-	    my $d = $ifaces->{$i};
+	    my $d = $ifaces->{$i} ||= {};
 	    $d->{priority} = $priority++ if !$d->{priority};
 	    push @{$d->{families}}, $family;
 
-- 
2.1.4





More information about the pve-devel mailing list