diff options
-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 1922c21b7..002b74008 100644 --- a/perl-install/network.pm +++ b/perl-install/network.pm @@ -370,7 +370,7 @@ sub configureNetwork2 { sethostname($netc) unless $::testing; addDefaultRoute($netc) unless $::testing; - grep { $_->{BOOTPROTO} =~ /^(dhcp)$/ } values %$intf and $install && $install->('dhcpd'); + grep { $_->{BOOTPROTO} =~ /^(dhcp)$/ } values %$intf and $install && $install->('dhcpcd'); grep { $_->{BOOTPROTO} =~ /^(pump|bootp)$/ } values %$intf and $install && $install->('pump'); #-res_init(); #- reinit the resolver so DNS changes take affect |