diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 22:03:29 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-11-09 22:03:29 +0000 |
commit | bc05f062a49c21078346c2223d0807afc9ce20bd (patch) | |
tree | 7ca7c36745e47ceb6f475c1a0daf8e9c56b2101a /perl-install/fsedit.pm | |
parent | 2f45ca11b6e3f1e74f2ba8a7bf65ca37b2c9bd08 (diff) | |
download | drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.tar drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.gz drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.bz2 drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.tar.xz drakx-backup-do-not-use-bc05f062a49c21078346c2223d0807afc9ce20bd.zip |
no_comment
Diffstat (limited to 'perl-install/fsedit.pm')
-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 a0c019c52..dec35b258 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -162,7 +162,7 @@ sub has_mntpoint($$) { sub check_mntpoint { my ($mntpoint, $hd, $part, $hds) = @_; - $mntpoint eq '' || isSwap($part) and return; + $mntpoint eq '' || isSwap($part) || isRAID($part) and return; local $_ = $mntpoint; m|^/| or die _("Mount points must begin with a leading /"); |