Author: fehr Date: Thu Aug 30 11:38:18 2007 New Revision: 40610 URL: http://svn.opensuse.org/viewcvs/yast?rev=40610&view=rev Log: call insserv for boot.crypto during update from <=10.2 (#305105) 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=40610&r1=40609&r2=40610&view=diff ============================================================================== --- trunk/storage/package/yast2-storage.changes (original) +++ trunk/storage/package/yast2-storage.changes Thu Aug 30 11:38:18 2007 @@ -1,4 +1,9 @@ ------------------------------------------------------------------- +Thu Aug 30 11:37:39 CEST 2007 - fehr@suse.de + +- call insserv for boot.crypto during update from <=10.2 (#305105) + +------------------------------------------------------------------- Tue Aug 28 17:28:32 CEST 2007 - fehr@suse.de - try a remount if fstab options change and umount/mount is not Modified: trunk/storage/storage/src/modules/Storage.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/storage/storage/src/modules/Storage.ycp?rev=40610&r1=40609&r2=40610&view=diff ============================================================================== --- trunk/storage/storage/src/modules/Storage.ycp (original) +++ trunk/storage/storage/src/modules/Storage.ycp Thu Aug 30 11:38:18 2007 @@ -5351,6 +5351,12 @@ map bo = (map)SCR::Execute (.target.bash_output, cmd ); y2milestone( "Update bo %1", bo ); } + if( oldv["major"]:0<10 || (oldv["major"]:0==10 && oldv["minor"]:0<=2)) + { + string cmd = "cd / && /sbin/insserv /etc/init.d/boot.crypto"; + map bo = (map)SCR::Execute (.target.bash_output, cmd ); + y2milestone( "Update bo %1", bo ); + } } global define list<string> GetTranslatedDevices( map oldv, map newv, -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org