Mailinglist Archive: opensuse-bugs (15134 mails)
| < Previous | Next > |
[Bug 327742] Browsing SLP sources in Add-Ons in Installation/ Update wants to install packages...
- From: bugzilla_noreply@xxxxxxxxxx
- Date: Mon, 24 Sep 2007 06:26:37 -0600 (MDT)
- Message-id: <20070924122637.2B725CC7AC@xxxxxxxxxxxxxxxxxxxxxx>
https://bugzilla.novell.com/show_bug.cgi?id=327742#c1
Lukas Ocilka <locilka@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
--- Comment #1 from Lukas Ocilka <locilka@xxxxxxxxxx> 2007-09-24 06:26:36 MST ---
This caused by yast2-slp not installed on the just-updated system...
The condition for installing was not written well...
Modified: trunk/add-on/src/add-on-workflow.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/add-on/src/add-on-workflow.ycp?rev=41051&r1=41050&r2=41051&view=diff
==============================================================================
--- trunk/add-on/src/add-on-workflow.ycp (original)
+++ trunk/add-on/src/add-on-workflow.ycp Mon Sep 24 14:23:18 2007
@@ -266,7 +266,9 @@
// in stage initial, packages can't be installed
// bugzilla #327742
- if (! Stage::initial() && ! installed_before) {
+ if (Stage::initial()) {
+ y2milestone ("Stage initial...");
+ } else if (! installed_before) {
// Tries to Check and Install packages
if (
! PackageSystem::CheckAndInstallPackagesInteractive
([required_package]) ||
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Lukas Ocilka <locilka@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
--- Comment #1 from Lukas Ocilka <locilka@xxxxxxxxxx> 2007-09-24 06:26:36 MST ---
This caused by yast2-slp not installed on the just-updated system...
The condition for installing was not written well...
Modified: trunk/add-on/src/add-on-workflow.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/add-on/src/add-on-workflow.ycp?rev=41051&r1=41050&r2=41051&view=diff
==============================================================================
--- trunk/add-on/src/add-on-workflow.ycp (original)
+++ trunk/add-on/src/add-on-workflow.ycp Mon Sep 24 14:23:18 2007
@@ -266,7 +266,9 @@
// in stage initial, packages can't be installed
// bugzilla #327742
- if (! Stage::initial() && ! installed_before) {
+ if (Stage::initial()) {
+ y2milestone ("Stage initial...");
+ } else if (! installed_before) {
// Tries to Check and Install packages
if (
! PackageSystem::CheckAndInstallPackagesInteractive
([required_package]) ||
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
| < Previous | Next > |