ACC SHELL
/**
* File: clients/inst_ask_net_test.ycp
* Package: Network configuration
* Summary: Configuration dialogs for installation
* Authors: Michal Svec <msvec@suse.cz>
* Arvin Schnell <arvin@suse.de>
*
* $Id: inst_ask_net_test.ycp 41746 2007-11-02 14:34:48Z locilka $
*/
{
textdomain "network";
import "Internet";
import "InternetDevices";
import "Mode";
include "network/routines.ycp";
include "network/installation/dialogs.ycp";
if (Mode::update ())
{
// FIXME should be made somewhere else
y2milestone ("starting network");
SCR::Execute (.target.bash, "/sbin/rcnetwork start");
sleep (1);
}
/* Nothing to test */
if(!InternetDevices::FindFastest())
{
Internet::do_test = false;
return `auto;
}
return TestStepsDialog();
/* EOF */
}
ACC SHELL 2018