diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network.pm b/perl-install/network.pm index ca4a66f80..b3535301b 100644 --- a/perl-install/network.pm +++ b/perl-install/network.pm @@ -16,7 +16,7 @@ use log; sub read_conf { my ($file) = @_; my %netc = getVarsFromSh($file); - $netc->{dnsServer} = $netc->{NS0}; + $netc{dnsServer} = $netc{NS0}; \%netc; } |