diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-05 07:47:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-05 07:47:36 +0000 |
commit | 0a23f36bd52f14f68cc394c37ef7a9af0c406caa (patch) | |
tree | 96cf9a72f416f0c2175055e43e1fbe2e3918ef1b /perl-install/lvm.pm | |
parent | 51fd51c2f560620d0e5c73a824d7677661f9c385 (diff) | |
download | drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.tar drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.tar.gz drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.tar.bz2 drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.tar.xz drakx-0a23f36bd52f14f68cc394c37ef7a9af0c406caa.zip |
big renaming of field {type} to {pt_type},
this will allow defining {fs_type} which will always be a string
whereas {pt_type} will always be a number
Diffstat (limited to 'perl-install/lvm.pm')
-rw-r--r-- | perl-install/lvm.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/lvm.pm b/perl-install/lvm.pm index 0770bf2b9..c660e4d95 100644 --- a/perl-install/lvm.pm +++ b/perl-install/lvm.pm @@ -92,10 +92,10 @@ sub get_lvs { [ map { my $device = "$lvm->{VG_name}/$_"; - my $type = -e "/dev/$device" && fsedit::typeOfPart($device); + my $pt_type = -e "/dev/$device" && fsedit::typeOfPart($device); { device => $device, - type => $type || 0x83, + type => $pt_type || 0x83, size => get_lv_size($device) } } @l ]; |