diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-27 19:16:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-27 19:16:21 +0000 |
commit | d23d3f83976f6cf5678f270009488e09c4b8c51c (patch) | |
tree | 210fc14b0816b0ec6061590d327437de80047ac8 /perl-install/standalone/diskdrake | |
parent | 7cbd70aa1989af49648687e0724092fe58f135b1 (diff) | |
download | drakx-d23d3f83976f6cf5678f270009488e09c4b8c51c.tar drakx-d23d3f83976f6cf5678f270009488e09c4b8c51c.tar.gz drakx-d23d3f83976f6cf5678f270009488e09c4b8c51c.tar.bz2 drakx-d23d3f83976f6cf5678f270009488e09c4b8c51c.tar.xz drakx-d23d3f83976f6cf5678f270009488e09c4b8c51c.zip |
- add get_info_from_fstab()
- use it when reading existing fstab (to get for example devfs mount)
Diffstat (limited to 'perl-install/standalone/diskdrake')
-rwxr-xr-x | perl-install/standalone/diskdrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/diskdrake b/perl-install/standalone/diskdrake index 24f20061f..54dbd7f75 100755 --- a/perl-install/standalone/diskdrake +++ b/perl-install/standalone/diskdrake @@ -75,7 +75,7 @@ $SIG{__DIE__} = sub { my $m = chomp_($_[0]); log::l("ERROR: $m") }; fs::get_raw_hds('', $all_hds); -fs::merge_info_from_fstab([ fsedit::get_really_all_fstab($all_hds) ], ''); +fs::get_info_from_fstab($all_hds, ''); fs::merge_info_from_mtab([ fsedit::get_really_all_fstab($all_hds) ], ''); $all_hds->{current_fstab} = fs::fstab_to_string($all_hds, ''); |