diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-11-12 13:29:11 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-11-12 13:29:11 +0000 |
commit | 4240d64a1a513fc3bfab971492e5f03cb764d09a (patch) | |
tree | f48f4ad52e09fa9ccff8a9c1c9142be745f312da /perl-install/any.pm | |
parent | 592828dbadbf03d7dfa698826764840009513653 (diff) | |
download | drakx-4240d64a1a513fc3bfab971492e5f03cb764d09a.tar drakx-4240d64a1a513fc3bfab971492e5f03cb764d09a.tar.gz drakx-4240d64a1a513fc3bfab971492e5f03cb764d09a.tar.bz2 drakx-4240d64a1a513fc3bfab971492e5f03cb764d09a.tar.xz drakx-4240d64a1a513fc3bfab971492e5f03cb764d09a.zip |
- use the "mount" command directly in move
- still not really clean ($o_options is dropped in many cases)
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index da4b667c2..d28cae3e1 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -546,7 +546,7 @@ sub inspect { $dir = ''; } else { mkdir $dir, 0700; - eval { fs::mount($part->{device}, $dir, type2fs($part), !$b_rw) }; + eval { fs::mount($part->{device}, $dir, type2fs($part, 'skip'), !$b_rw) }; $@ and return; } my $h = before_leaving { |