Mailinglist Archive: yast-commit (747 mails)
| < Previous | Next > |
[yast-commit] r39189 - in /trunk/storage: package/yast2-storage.changes storage/src/modules/Storage.ycp
- From: fehr@xxxxxxxxxxxxxxxx
- Date: Thu, 05 Jul 2007 13:34:55 -0000
- Message-id: <20070705133455.8F8F9354C1@xxxxxxxxxxxxxxxx>
Author: fehr
Date: Thu Jul 5 15:34:55 2007
New Revision: 39189
URL: http://svn.opensuse.org/viewcvs/yast?rev=39189&view=rev
Log:
fix wrong handling of disk initialisation (#287247)
Modified:
trunk/storage/package/yast2-storage.changes
trunk/storage/storage/src/modules/Storage.ycp
Modified: trunk/storage/package/yast2-storage.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/package/yast2-storage.changes?rev=39189&r1=39188&r2=39189&view=diff
==============================================================================
--- trunk/storage/package/yast2-storage.changes (original)
+++ trunk/storage/package/yast2-storage.changes Thu Jul 5 15:34:55 2007
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Thu Jul 5 15:34:35 CEST 2007 - fehr@xxxxxxx
+
+- fix wrong handling of disk initialisation (#287247)
+
+-------------------------------------------------------------------
Wed Jul 4 16:40:10 CEST 2007 - fehr@xxxxxxx
- do not call Storage::GetMountBy in autoyast config mode (#288690)
Modified: trunk/storage/storage/src/modules/Storage.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/Storage.ycp?rev=39189&r1=39188&r2=39189&view=diff
==============================================================================
--- trunk/storage/storage/src/modules/Storage.ycp (original)
+++ trunk/storage/storage/src/modules/Storage.ycp Thu Jul 5 15:34:55 2007
@@ -3419,12 +3419,20 @@
if( target[k,"delete"]:false && haskey( tg, k ) )
{
if( target[k,"type"]:`CT_UNKNOWN==`CT_LVM )
+ {
DeleteLvmVg( target[k,"name"]:"" );
+ target[k,"delete"] = false;
+ }
else if( target[k,"type"]:`CT_UNKNOWN==`CT_EVMS )
+ {
DeleteEvmsCo( target[k,"name"]:"" );
+ target[k,"delete"] = false;
+ }
else if( target[k,"type"]:`CT_UNKNOWN==`CT_DMRAID )
+ {
DeleteDmraid( k );
- target[k,"delete"] = false;
+ target[k,"delete"] = false;
+ }
}
});
keys = maplist( string k, any e, target, ``(k));
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Thu Jul 5 15:34:55 2007
New Revision: 39189
URL: http://svn.opensuse.org/viewcvs/yast?rev=39189&view=rev
Log:
fix wrong handling of disk initialisation (#287247)
Modified:
trunk/storage/package/yast2-storage.changes
trunk/storage/storage/src/modules/Storage.ycp
Modified: trunk/storage/package/yast2-storage.changes
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/package/yast2-storage.changes?rev=39189&r1=39188&r2=39189&view=diff
==============================================================================
--- trunk/storage/package/yast2-storage.changes (original)
+++ trunk/storage/package/yast2-storage.changes Thu Jul 5 15:34:55 2007
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Thu Jul 5 15:34:35 CEST 2007 - fehr@xxxxxxx
+
+- fix wrong handling of disk initialisation (#287247)
+
+-------------------------------------------------------------------
Wed Jul 4 16:40:10 CEST 2007 - fehr@xxxxxxx
- do not call Storage::GetMountBy in autoyast config mode (#288690)
Modified: trunk/storage/storage/src/modules/Storage.ycp
URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/Storage.ycp?rev=39189&r1=39188&r2=39189&view=diff
==============================================================================
--- trunk/storage/storage/src/modules/Storage.ycp (original)
+++ trunk/storage/storage/src/modules/Storage.ycp Thu Jul 5 15:34:55 2007
@@ -3419,12 +3419,20 @@
if( target[k,"delete"]:false && haskey( tg, k ) )
{
if( target[k,"type"]:`CT_UNKNOWN==`CT_LVM )
+ {
DeleteLvmVg( target[k,"name"]:"" );
+ target[k,"delete"] = false;
+ }
else if( target[k,"type"]:`CT_UNKNOWN==`CT_EVMS )
+ {
DeleteEvmsCo( target[k,"name"]:"" );
+ target[k,"delete"] = false;
+ }
else if( target[k,"type"]:`CT_UNKNOWN==`CT_DMRAID )
+ {
DeleteDmraid( k );
- target[k,"delete"] = false;
+ target[k,"delete"] = false;
+ }
}
});
keys = maplist( string k, any e, target, ``(k));
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |