[yast-commit] r62630 - in /branches/tmp/jsrain/unattended-migration/autoinstallation/src: clients/inst_autoinit.ycp modules/AutoInstall.ycp
Author: jsrain Date: Wed Oct 13 14:00:45 2010 New Revision: 62630 URL: http://svn.opensuse.org/viewcvs/yast?rev=62630&view=rev Log: avoid warning without time-out while probing hardware (happens especially on S/390) Modified: branches/tmp/jsrain/unattended-migration/autoinstallation/src/clients/inst_autoinit.ycp branches/tmp/jsrain/unattended-migration/autoinstallation/src/modules/AutoInstall.ycp Modified: branches/tmp/jsrain/unattended-migration/autoinstallation/src/clients/inst_autoinit.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/jsrain/unattended-migration/autoinstallation/src/clients/inst_autoinit.ycp?rev=62630&r1=62629&r2=62630&view=diff ============================================================================== --- branches/tmp/jsrain/unattended-migration/autoinstallation/src/clients/inst_autoinit.ycp (original) +++ branches/tmp/jsrain/unattended-migration/autoinstallation/src/clients/inst_autoinit.ycp Wed Oct 13 14:00:45 2010 @@ -166,6 +166,20 @@ } Progress::Title(_("Probing hardware...")); + // give warnings a time-out + Report::Import($[ + "messages" : $[ + "log": true, + "show": true, + "timeout": 10 + ], + "warnings" : $[ + "log": true, + "show": true, + "timeout": 10 + ] + ]); + if (! (Mode::autoupgrade() && AutoinstConfig::ProfileInRootPart)) WFM::CallFunction("inst_system_analysis", [] ); AutoInstallRules::ProbeRules(); Modified: branches/tmp/jsrain/unattended-migration/autoinstallation/src/modules/AutoInstall.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/jsrain/unattended-migration/autoinstallation/src/modules/AutoInstall.ycp?rev=62630&r1=62629&r2=62630&view=diff ============================================================================== --- branches/tmp/jsrain/unattended-migration/autoinstallation/src/modules/AutoInstall.ycp (original) +++ branches/tmp/jsrain/unattended-migration/autoinstallation/src/modules/AutoInstall.ycp Wed Oct 13 14:00:45 2010 @@ -153,7 +153,7 @@ */ global define boolean Save() { - if (Mode::autoinst ()) + if (Mode::autoinst () || Mode::autoupgrade()) return (Profile::SaveProfileStructure( AutoinstConfig::parsedControlFile )); else return true; -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsrain@svn2.opensuse.org