summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-09-20 01:49:13 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-09-20 01:49:13 +0000
commite55184eed334811efc27b79948c2956a4b35f18b (patch)
tree1c1f0ef3f006662976c5bfdb17c43f6ff5afffdb /perl-install/fs.pm
parent1ea3578bfb4c6b4ef7b3854ce4561d8bc9afaef4 (diff)
downloaddrakx-backup-do-not-use-e55184eed334811efc27b79948c2956a4b35f18b.tar
drakx-backup-do-not-use-e55184eed334811efc27b79948c2956a4b35f18b.tar.gz
drakx-backup-do-not-use-e55184eed334811efc27b79948c2956a4b35f18b.tar.bz2
drakx-backup-do-not-use-e55184eed334811efc27b79948c2956a4b35f18b.tar.xz
drakx-backup-do-not-use-e55184eed334811efc27b79948c2956a4b35f18b.zip
- don't use fs::get_info_from_fstab() in install_any::use_root_part() to be able to handle
renamed devices - fs::get_info_from_fstab() doesn't take a prefix anymore - small perl_checker fix in install_any.pm
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 8b0a58e74..8d76939b8 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -236,10 +236,9 @@ sub merge_info_from_fstab {
merge_fstabs($loose, $fstab, @l);
}
-# - when using "$loose", it does not merge in type&options from the fstab
sub get_info_from_fstab {
- my ($all_hds, $prefix) = @_;
- my @l = read_fstab($prefix, '/etc/fstab', 'keep_default');
+ my ($all_hds) = @_;
+ my @l = read_fstab('/etc/fstab', 'keep_default');
add2all_hds($all_hds, @l)
}