Changeset 3369 in MondoRescue
- Timestamp:
- Apr 18, 2015, 7:15:25 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/MondoRescue/lib/MondoRescue/Disk.pm
r3365 r3369 55 55 open(FDISK, "$fdisk -l $device 2>/dev/null |") || die "Unable to read from $fdisk"; 56 56 while (<FDISK>) { 57 if (($_ =~ /EFI GPT/) || ($_ =~ / GPT /) {57 if (($_ =~ /EFI GPT/) || ($_ =~ / GPT /)) { 58 58 $type= "gpt"; 59 59 last; … … 61 61 } 62 62 close(FDISK); 63 pb_log(2,"Found a $type partition format\n )";63 pb_log(2,"Found a $type partition format\n"); 64 64 return ($type); 65 65 }
Note:
See TracChangeset
for help on using the changeset viewer.