diff options
Diffstat (limited to 'perl-install/network')
-rw-r--r-- | perl-install/network/netconnect.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 9ef1119ec..6b1672ad3 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -1361,12 +1361,12 @@ sub start_internet { #- give a chance for module to be loaded using kernel-BOOT modules... #- FIXME, this has nothing to do there $::isStandalone or modules::load_category($o->{modules_conf}, 'network/*'); - network::tools::connect_backend($o->{net}); + network::tools::start_interface($o->{net}{net_interface}); } sub stop_internet { my ($o) = @_; - network::tools::disconnect_backend($o->{net}); + network::tools::stop_interface($o->{net}{net_interface}); } 1; |