View | Details | Raw Unified | Return to bug 116454
Collapse All | Expand All

(-)OSRFsck.ycp (-1 / +2 lines)
Lines 147-153 Link Here
147
    fsck_fsid = union (Partitions::fsid_wintypes, Partitions::fsid_dostypes );
147
    fsck_fsid = union (Partitions::fsid_wintypes, Partitions::fsid_dostypes );
148
    fsck_fsid = union (fsck_fsid, Partitions::fsid_ntfstypes );
148
    fsck_fsid = union (fsck_fsid, Partitions::fsid_ntfstypes );
149
    fsck_fsid = union (fsck_fsid,
149
    fsck_fsid = union (fsck_fsid,
150
	[ Partitions::fsid_native, Partitions::fsid_lvm  ]);
150
	[ Partitions::fsid_native, Partitions::fsid_lvm, Partitions::fsid_raid  ]);
151
  }
151
  }
152
152
153
153
Lines 193-198 Link Here
193
193
194
      foreach(string dev, map target, (map<string,map<string,any> >)Storage::GetTargetMap(), ``{
194
      foreach(string dev, map target, (map<string,map<string,any> >)Storage::GetTargetMap(), ``{
195
	  foreach(map p, target["partitions"]:[],``{
195
	  foreach(map p, target["partitions"]:[],``{
196
y2internal ("part: %1", p);
196
197
197
	      if ( p["delete"]:false == false &&
198
	      if ( p["delete"]:false == false &&
198
		  ( contains ( fsck_fsid, p["fsid"]:0 ) &&
199
		  ( contains ( fsck_fsid, p["fsid"]:0 ) &&
(-)OSRFstab.ycp (+2 lines)
Lines 244-249 Link Here
244
    if (Mode::test ()) return ["/dev/hda1", "/dev/hda2"];
244
    if (Mode::test ()) return ["/dev/hda1", "/dev/hda2"];
245
245
246
    if (size (checked_partitions) == 0) return [];
246
    if (size (checked_partitions) == 0) return [];
247
y2warning ("checked_partitions: %1", checked_partitions);
247
248
248
    // e.g.: ["/dev/hda1", "/dev/hdb2"]
249
    // e.g.: ["/dev/hda1", "/dev/hdb2"]
249
    list<string> linux_partition_list		= [];
250
    list<string> linux_partition_list		= [];
Lines 252-257 Link Here
252
253
253
	foreach (map partition, description["partitions"]:[], ``{
254
	foreach (map partition, description["partitions"]:[], ``{
254
255
256
y2internal ("partition: %1", partition);
255
	    if ((partition["fsid"]:0 == Partitions::fsid_native ||
257
	    if ((partition["fsid"]:0 == Partitions::fsid_native ||
256
		 partition["type"]:`primary == `lvm ||
258
		 partition["type"]:`primary == `lvm ||
257
		 partition["type"]:`primary == `sw_raid))
259
		 partition["type"]:`primary == `sw_raid))

Return to bug 116454