diff options
Diffstat (limited to 'perl-install/network.pm')
-rw-r--r-- | perl-install/network.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/network.pm b/perl-install/network.pm index a1350dd8a..174692d4d 100644 --- a/perl-install/network.pm +++ b/perl-install/network.pm @@ -189,7 +189,8 @@ sub dnsServers { sub findIntf { my ($intf, $device) = @_; - $intf->{$device} ||= { DEVICE => $device }; + $intf->{$device}->{DEVICE} = $device; + $intf->{$device}; } #PAD \s* a la fin my $ip_regexp = qr/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/; |