diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-04-03 14:55:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-04-03 14:55:12 +0000 |
commit | 2c25d85a93494f753131f221094b1869f5ae3a6b (patch) | |
tree | d29e69359b008cf3a70c72e81f5673a7c442f7bb /perl-install | |
parent | 0f526e1de2c1eb22d27ddcbcb13fa57083e4e008 (diff) | |
download | drakx-2c25d85a93494f753131f221094b1869f5ae3a6b.tar drakx-2c25d85a93494f753131f221094b1869f5ae3a6b.tar.gz drakx-2c25d85a93494f753131f221094b1869f5ae3a6b.tar.bz2 drakx-2c25d85a93494f753131f221094b1869f5ae3a6b.tar.xz drakx-2c25d85a93494f753131f221094b1869f5ae3a6b.zip |
(get_fstab): restore loopback::loopbacks because hds contains only true
hard drives (not pseudo one like raid, loopback and lvm)
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 0cad90d51..4d525a749 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -123,7 +123,7 @@ sub readProcPartitions { #- get all normal partition including special ones as found on sparc. sub get_fstab { - map { partition_table::get_normal_parts($_) } @_ + loopback::loopbacks(@_), map { partition_table::get_normal_parts($_) } @_ } #- get normal partition that should be visible for working on. |