blob: f7cdc95ce3217988cb8dca188f473af20da46607 (
plain)
| 1
2
3
4
5
6
7
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;
};
 |