From 872a725d052e5da274568e5a7bad861c2748586b Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 15 Jan 2003 17:21:57 +0000 Subject: fix for network module probe & configuration in interactive auto_install --- perl-install/patch/patch-9.0-auto-inst-network-config.pl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 perl-install/patch/patch-9.0-auto-inst-network-config.pl diff --git a/perl-install/patch/patch-9.0-auto-inst-network-config.pl b/perl-install/patch/patch-9.0-auto-inst-network-config.pl new file mode 100644 index 000000000..f7cdc95ce --- /dev/null +++ b/perl-install/patch/patch-9.0-auto-inst-network-config.pl @@ -0,0 +1,8 @@ +package install_steps; +log::l("fixing network module probe & configuration in interactive auto_install"); +my $old_configureNetwork = \&configureNetwork; +undef *configureNetwork; +*configureNetwork = sub { + modules::load_category('network/main|usb'); + &$old_configureNetwork; +}; -- cgit v1.2.1