Mailinglist Archive: opensuse-commit (2130 mails)
| < Previous | Next > |
commit yast2-repair
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Tue, 08 Apr 2008 21:45:48 +0200
- Message-id: <20080408194548.A175B678168@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yast2-repair
checked in at Tue Apr 8 21:45:48 CEST 2008.
--------
--- yast2-repair/yast2-repair.changes 2008-04-02 13:49:30.000000000 +0200
+++ yast2-repair/yast2-repair.changes 2008-04-08 13:13:59.190178000 +0200
@@ -1,0 +2,6 @@
+Tue Apr 8 13:07:52 CEST 2008 - jsuchome@xxxxxxx
+
+- do not report errors on encrypted partitions (fate#301729)
+- 2.16.7
+
+-------------------------------------------------------------------
Old:
----
yast2-repair-2.16.6.tar.bz2
New:
----
yast2-repair-2.16.7.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-repair.spec ++++++
--- /var/tmp/diff_new_pack.x27988/_old 2008-04-08 21:41:57.000000000 +0200
+++ /var/tmp/diff_new_pack.x27988/_new 2008-04-08 21:41:57.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-repair (Version 2.16.6)
+# spec file for package yast2-repair (Version 2.16.7)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -12,12 +12,12 @@
Name: yast2-repair
-Version: 2.16.6
+Version: 2.16.7
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-repair-2.16.6.tar.bz2
+Source0: yast2-repair-2.16.7.tar.bz2
Prefix: /usr
BuildRequires: perl-XML-Writer update-desktop-files yast2 yast2-bootloader
yast2-devtools yast2-packager yast2-storage yast2-testsuite
Requires: yast2 gpart reiserfs e2fsprogs yast2-bootloader yast2-storage
@@ -35,7 +35,7 @@
Jiri Suchomel <jsuchome@xxxxxxx>
%prep
-%setup -n yast2-repair-2.16.6
+%setup -n yast2-repair-2.16.7
%build
%{prefix}/bin/y2tool y2autoconf
@@ -69,6 +69,9 @@
/usr/share/YaST2/include/repair/*
%doc %{prefix}/share/doc/packages/yast2-repair
%changelog
+* Tue Apr 08 2008 jsuchome@xxxxxxx
+- do not report errors on encrypted partitions (fate#301729)
+- 2.16.7
* Wed Apr 02 2008 jsuchome@xxxxxxx
- devpts entry is acutally required in /etc/fstab (bnc#366860)
- 2.16.6
++++++ yast2-repair-2.16.6.tar.bz2 -> yast2-repair-2.16.7.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-repair-2.16.6/src/OSRFstab.ycp
new/yast2-repair-2.16.7/src/OSRFstab.ycp
--- old/yast2-repair-2.16.6/src/OSRFstab.ycp 2008-04-02 12:41:35.000000000
+0200
+++ new/yast2-repair-2.16.7/src/OSRFstab.ycp 2008-04-02 13:49:59.000000000
+0200
@@ -25,7 +25,7 @@
* OSRFstab::Repair();
*
*
- * $Id: OSRFstab.ycp 43308 2008-01-07 14:38:27Z jsuchome $
+ * $Id: OSRFstab.ycp 45959 2008-04-02 11:49:58Z jsuchome $
*/
{
module "OSRFstab";
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-repair-2.16.6/src/osr_module_partition.ycp
new/yast2-repair-2.16.7/src/osr_module_partition.ycp
--- old/yast2-repair-2.16.6/src/osr_module_partition.ycp 2008-02-27
12:53:58.000000000 +0100
+++ new/yast2-repair-2.16.7/src/osr_module_partition.ycp 2008-04-08
12:27:33.000000000 +0200
@@ -431,15 +431,10 @@
/**
- *
+ * fsck for all possible partitions
*/
define boolean OSRPartitionFSCheck()``{
- /////////////////////////////////////////////////////////
- //
- // fsck for all possible partitions
- //
- /////////////////////////////////////////////////////////
list<map> fsck_partitions = (list<map>)
OSRCommon::RequireList("fsck_partitions");
list<map> mounted_partitions = (list<map>)
@@ -448,18 +443,27 @@
foreach(map p, fsck_partitions, ``{
- string dev_name = p["device"]:"";
- // summary header
- string summary_header = sformat(_("Executing file system check for
partition %1..."), dev_name );
-
- if( size( filter(map p, mounted_partitions, ``(p["spec"]:"" == dev_name
))) != 0 )
- {
- // summary text
- OSRSummary::DetectOK(summary_header, _("Partition mounted: check
impossible"));
- checked_partitions = add(checked_partitions, dev_name );
- }
- else
- {
+ string dev_name = p["device"]:"";
+ // summary header
+ string summary_header = sformat(_("Executing file system check for
partition %1..."), dev_name );
+
+y2internal ("p: %1", p);
+Popup::Message ("check?");
+ if( size( filter(map p, mounted_partitions, ``(p["spec"]:"" ==
dev_name ))) != 0 )
+ {
+ // summary text
+ OSRSummary::DetectOK(summary_header, _("Partition mounted: check
impossible"));
+ checked_partitions = add(checked_partitions, dev_name );
+ }
+ else if (p["enc_type"]:`none != `none)
+ {
+y2warning ("---------------- enc");
+ OSRSummary::DetectOmit (summary_header,
+ // summary text
+ _("Partition is encrypted: check not supported"));
+ }
+ else
+ {
boolean fs_ok = OSRFsck::Check( p );
symbol used_fs = Storage::GetPartition( Storage::GetTargetMap(),
p["device"]:""
)["detected_fs"]:`none;
@@ -500,7 +504,7 @@
}
}
}
- }
+ }
});
OSRCommon::ProvideList( "checked_partitions", checked_partitions );
return true;
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-repair-2.16.6/VERSION
new/yast2-repair-2.16.7/VERSION
--- old/yast2-repair-2.16.6/VERSION 2008-04-02 12:42:22.000000000 +0200
+++ new/yast2-repair-2.16.7/VERSION 2008-04-08 13:08:23.000000000 +0200
@@ -1 +1 @@
-2.16.6
+2.16.7
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |