diff options
author | Axalon Bloodstone <axalon@mandriva.com> | 1999-11-26 05:04:30 +0000 |
---|---|---|
committer | Axalon Bloodstone <axalon@mandriva.com> | 1999-11-26 05:04:30 +0000 |
commit | 847e879b3c88039b568be6570a99893aa82be787 (patch) | |
tree | 251824957f78970e63f93d0124c7bb46b633467c /perl-install | |
parent | 52fe7462a10686ff5f02190d91e08ba1a6ce3432 (diff) | |
download | drakx-847e879b3c88039b568be6570a99893aa82be787.tar drakx-847e879b3c88039b568be6570a99893aa82be787.tar.gz drakx-847e879b3c88039b568be6570a99893aa82be787.tar.bz2 drakx-847e879b3c88039b568be6570a99893aa82be787.tar.xz drakx-847e879b3c88039b568be6570a99893aa82be787.zip |
Check for pump as a bootproto
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 2 insertions, 0 deletions
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); |