diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-03-18 16:57:55 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-03-18 16:57:55 +0000 |
commit | 583f4b5202436f566c5fa22ef8f83386175003b9 (patch) | |
tree | 72db09e9cbf90772bd149a61d02af00dd2ebbc36 /perl-install/lang.pm | |
parent | 972364b50d8395aadd92193489294c146d9cc0a7 (diff) | |
download | drakx-583f4b5202436f566c5fa22ef8f83386175003b9.tar drakx-583f4b5202436f566c5fa22ef8f83386175003b9.tar.gz drakx-583f4b5202436f566c5fa22ef8f83386175003b9.tar.bz2 drakx-583f4b5202436f566c5fa22ef8f83386175003b9.tar.xz drakx-583f4b5202436f566c5fa22ef8f83386175003b9.zip |
(write) do not make /etc/sysconfig/i18n readable only by root in high
security level (#39027)
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm index a8bbd0404..272c61e6f 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -1158,7 +1158,7 @@ sub write { my $file = $b_user_only ? "$ENV{HOME}/.i18n" : '/etc/sysconfig/i18n'; log::explanations(qq(Setting l10n configuration in "$file")); - setVarsInSh($::prefix . $file, $h); + setVarsInShMode($::prefix . $file, 0644, $h); configure_hal($locale) if !$b_user_only; |