summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/network/network.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/network.pm b/perl-install/network/network.pm
index 058a0679c..79d4d90a7 100644
--- a/perl-install/network/network.pm
+++ b/perl-install/network/network.pm
@@ -172,8 +172,8 @@ sub add2hosts {
my ($file, $hostname, @ips) = @_;
my $sub_hostname = $hostname =~ /(.*?)\./ ? " $1" : '';
- my %l = map { if_(/\s*(\S+)(.*)/, $1 => $2) }
- grep { !/\s+\Q$hostname$sub_hostname\E\s*$/ } cat_($file);
+ my %l = map { if_(/^\s*(\S+)(.*)/, $1 => $2) }
+ grep { !/\s\Q$hostname$sub_hostname\E(\s|$)/ } cat_($file);
$l{$_} = "\t\t$hostname$sub_hostname" foreach grep { $_ } @ips;