diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-05 20:55:57 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-05 20:55:57 +0000 |
commit | 0fc442be27fbff38ff3c52b219830c2a9084c9cd (patch) | |
tree | cfd8c1ea412c4bf779032fec578ff5dd2150eef2 /perl-install | |
parent | 08f848d4965660105e96de50e8c1684d1d01caf6 (diff) | |
download | drakx-backup-do-not-use-0fc442be27fbff38ff3c52b219830c2a9084c9cd.tar drakx-backup-do-not-use-0fc442be27fbff38ff3c52b219830c2a9084c9cd.tar.gz drakx-backup-do-not-use-0fc442be27fbff38ff3c52b219830c2a9084c9cd.tar.bz2 drakx-backup-do-not-use-0fc442be27fbff38ff3c52b219830c2a9084c9cd.tar.xz drakx-backup-do-not-use-0fc442be27fbff38ff3c52b219830c2a9084c9cd.zip |
set umask=0 for ntfs partitions (currently only used when user sets the mount point to a ntfs partition)
(suggested in bug #189)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 6dc68a1a4..1cee0a1eb 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -460,7 +460,7 @@ sub set_default_options { }); } if (isThisFs('ntfs', $part) || $is_auto) { - put_in_hash($options, { 'iocharset=' => $iocharset }); + put_in_hash($options, { 'umask=0' => $security < 3, 'iocharset=' => $iocharset }); } if (isThisFs('iso9660', $part) || $is_auto) { put_in_hash($options, { user => 1, noexec => 0, 'iocharset=' => $iocharset }); |