diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-07-01 03:34:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-07-01 03:34:45 +0000 |
commit | c818a63bfd70c03858ff99e7b524ff31eb5b652a (patch) | |
tree | 1a6368f738c8904b63bb21983f7ee11153475b68 /perl-install | |
parent | be8556d50bea091b1205b525337d0f57dc8c67a6 (diff) | |
download | drakx-c818a63bfd70c03858ff99e7b524ff31eb5b652a.tar drakx-c818a63bfd70c03858ff99e7b524ff31eb5b652a.tar.gz drakx-c818a63bfd70c03858ff99e7b524ff31eb5b652a.tar.bz2 drakx-c818a63bfd70c03858ff99e7b524ff31eb5b652a.tar.xz drakx-c818a63bfd70c03858ff99e7b524ff31eb5b652a.zip |
better error message, and translate it
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/lvm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/lvm.pm b/perl-install/lvm.pm index 46201f4a1..3563af941 100644 --- a/perl-install/lvm.pm +++ b/perl-install/lvm.pm @@ -147,7 +147,7 @@ sub lv_create { if ($lv->{mntpoint} eq '/boot' && lv_nb_segments($lv) > 1) { lvm_cmd_or_die('lvremove', '-f', "/dev/$lv->{device}"); - die "/boot on multiple segments Logical Volume is useless\n"; + die N("The bootloader can't handle /boot on multiple physicals volumes"); } $lv->{size} = get_lv_size($lv->{device}); #- the created size is smaller than asked size |