summaryrefslogtreecommitdiffstats
path: root/perl-install/patch
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/patch')
-rw-r--r--perl-install/patch/patch-9.0-auto-inst-network-config.pl8
1 files changed, 8 insertions, 0 deletions
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;
+};