diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-25 16:11:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-25 16:11:49 +0000 |
commit | 7f178e30a30842d3a2eb91138e102971f02f4433 (patch) | |
tree | 3fb93210cfccd8b45d41ba7ceb7644c5a0fd4614 /perl-install/fs/mount_options.pm | |
parent | 85f1ea414035c750e76ce778077b3e51856712f8 (diff) | |
download | drakx-7f178e30a30842d3a2eb91138e102971f02f4433.tar drakx-7f178e30a30842d3a2eb91138e102971f02f4433.tar.gz drakx-7f178e30a30842d3a2eb91138e102971f02f4433.tar.bz2 drakx-7f178e30a30842d3a2eb91138e102971f02f4433.tar.xz drakx-7f178e30a30842d3a2eb91138e102971f02f4433.zip |
- use umask=0 by default on vfat (#39315)
Diffstat (limited to 'perl-install/fs/mount_options.pm')
-rw-r--r-- | perl-install/fs/mount_options.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index 3cd796d64..3eacdfb4a 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -226,7 +226,7 @@ sub set_default { }) if $part->{is_removable}; put_in_hash($options, { - 'umask=0' => $opts{security} < 3, 'umask=0022' => $opts{security} < 4, + 'umask=0' => $opts{security} <= 3, 'iocharset=' => $opts{iocharset}, 'codepage=' => $opts{codepage}, }); } |