From 847e879b3c88039b568be6570a99893aa82be787 Mon Sep 17 00:00:00 2001 From: Axalon Bloodstone Date: Fri, 26 Nov 1999 05:04:30 +0000 Subject: Check for pump as a bootproto --- perl-install/install_steps.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'perl-install/install_steps.pm') diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 540e06014..1de040a13 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -251,6 +251,8 @@ sub configureNetwork($) { network::addDefaultRoute($o->{netc}) unless $::testing; install_any::pkg_install($o, "dhcpcd") if grep { $_->{BOOTPROTO} =~ /^(dhcp|bootp)$/ } @{$o->{intf}}; + # Handle also pump (this is still in initscripts no?) + install_any::pkg_install($o, "pump") if grep { $_->{BOOTPROTO} =~ /^(pump)$/ } @{$o->{intf}}; #-res_init(); #- reinit the resolver so DNS changes take affect miscellaneousNetwork($o); -- cgit v1.2.1