Mailinglist Archive: yast-commit (953 mails)
| < Previous | Next > |
[yast-commit] r50179 - /trunk/network/src/modules/Lan.ycp
- From: mzugec@xxxxxxxxxxxxxxxx
- Date: Mon, 18 Aug 2008 13:00:16 -0000
- Message-id: <20080818130016.B5F6F2DB56@xxxxxxxxxxxxxxxx>
Author: mzugec
Date: Mon Aug 18 15:00:16 2008
New Revision: 50179
URL: http://svn.opensuse.org/viewcvs/yast?rev=50179&view=rev
Log:
another fix in Lan::Packages() function
Modified:
trunk/network/src/modules/Lan.ycp
Modified: trunk/network/src/modules/Lan.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/network/src/modules/Lan.ycp?rev=50179&r1=50178&r2=50179&view=diff
==============================================================================
--- trunk/network/src/modules/Lan.ycp (original)
+++ trunk/network/src/modules/Lan.ycp Mon Aug 18 15:00:16 2008
@@ -1158,9 +1158,10 @@
foreach(string type, (list<string>)Map::Keys(required["options"]:$[]), {
foreach(string option, (list<string>)Map::Keys(required["options",
type]:$[]), {
string package=required["options", type, option]:"";
- if (NetworkInterfaces::Locate (type, option) != [])
+ if (NetworkInterfaces::Locate (type, option) != []){
y2milestone("Network interface with options %1, %2 requires package
%3", type, option, package);
if (!PackageSystem::Installed(package)) pkgs = add (pkgs, package);
+ }
});
});
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Mon Aug 18 15:00:16 2008
New Revision: 50179
URL: http://svn.opensuse.org/viewcvs/yast?rev=50179&view=rev
Log:
another fix in Lan::Packages() function
Modified:
trunk/network/src/modules/Lan.ycp
Modified: trunk/network/src/modules/Lan.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/network/src/modules/Lan.ycp?rev=50179&r1=50178&r2=50179&view=diff
==============================================================================
--- trunk/network/src/modules/Lan.ycp (original)
+++ trunk/network/src/modules/Lan.ycp Mon Aug 18 15:00:16 2008
@@ -1158,9 +1158,10 @@
foreach(string type, (list<string>)Map::Keys(required["options"]:$[]), {
foreach(string option, (list<string>)Map::Keys(required["options",
type]:$[]), {
string package=required["options", type, option]:"";
- if (NetworkInterfaces::Locate (type, option) != [])
+ if (NetworkInterfaces::Locate (type, option) != []){
y2milestone("Network interface with options %1, %2 requires package
%3", type, option, package);
if (!PackageSystem::Installed(package)) pkgs = add (pkgs, package);
+ }
});
});
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |