diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-10 14:26:42 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-10 14:26:42 +0000 |
commit | 1d63926a558c483609032e9d5860a93ad987053c (patch) | |
tree | ef821dde185c2c9e1e641348766ee7f2505cca2f /perl-install | |
parent | 2707019e8d43f78fd3913c0ca5f2d79d2fa20cc1 (diff) | |
download | drakx-1d63926a558c483609032e9d5860a93ad987053c.tar drakx-1d63926a558c483609032e9d5860a93ad987053c.tar.gz drakx-1d63926a558c483609032e9d5860a93ad987053c.tar.bz2 drakx-1d63926a558c483609032e9d5860a93ad987053c.tar.xz drakx-1d63926a558c483609032e9d5860a93ad987053c.zip |
lvm on / works (dixit Brian J. Murrell)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 05eec0a60..d89c3a064 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -524,7 +524,7 @@ sub check_mntpoint { die "raid / with no /boot" if $mntpoint eq "/" && isRAID($part) && !has_mntpoint("/boot", $all_hds); die N("You can't use a LVM Logical Volume for mount point %s", $mntpoint) - if ($mntpoint eq '/' || $mntpoint eq '/boot') && isLVM($hd); + if $mntpoint eq '/boot' && isLVM($hd); die N("This directory should remain within the root filesystem") if member($mntpoint, qw(/bin /dev /etc /lib /sbin /root /mnt)); die N("You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n") |