summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-09-05 20:55:57 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-09-05 20:55:57 +0000
commit0fc442be27fbff38ff3c52b219830c2a9084c9cd (patch)
treecfd8c1ea412c4bf779032fec578ff5dd2150eef2 /perl-install/fs.pm
parent08f848d4965660105e96de50e8c1684d1d01caf6 (diff)
downloaddrakx-0fc442be27fbff38ff3c52b219830c2a9084c9cd.tar
drakx-0fc442be27fbff38ff3c52b219830c2a9084c9cd.tar.gz
drakx-0fc442be27fbff38ff3c52b219830c2a9084c9cd.tar.bz2
drakx-0fc442be27fbff38ff3c52b219830c2a9084c9cd.tar.xz
drakx-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/fs.pm')
-rw-r--r--perl-install/fs.pm2
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 });