diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-11-06 18:05:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-11-06 18:05:45 +0000 |
commit | ce3e923019e651761fa44c9441034c0070438f4e (patch) | |
tree | c6c80d5e24c52d289f42fc4e3848848b9867970b /perl-install | |
parent | 344843b4bf93af1f53bfc08bd7d97bc9d31af9d7 (diff) | |
download | drakx-backup-do-not-use-ce3e923019e651761fa44c9441034c0070438f4e.tar drakx-backup-do-not-use-ce3e923019e651761fa44c9441034c0070438f4e.tar.gz drakx-backup-do-not-use-ce3e923019e651761fa44c9441034c0070438f4e.tar.bz2 drakx-backup-do-not-use-ce3e923019e651761fa44c9441034c0070438f4e.tar.xz drakx-backup-do-not-use-ce3e923019e651761fa44c9441034c0070438f4e.zip |
(doPartitionDisksAfter): fs::mount_all moved here
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 2b14adc4b..c9cfcd2be 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -151,6 +151,8 @@ sub doPartitionDisksAfter { $o->{fstab} = [ fsedit::get_fstab(@{$o->{hds}}, $o->{raid}) ]; fsedit::get_root_($o->{fstab}) or die "Oops, no root partition"; + fs::mount_all($fstab, $prefix); + if (my $s = delete $o->{stage1_hd}) { my ($part) = grep { $_->{device} eq $s->{device} } @{$o->{fstab}}; $part->{isMounted} ? |