summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/lang.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 322f08242..f57abfcfc 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -4,6 +4,9 @@
modprobe.preload, the modules are now handled by coldplug
- draksec
o do not continue if installing msec crashed or was canceled (#38911)
+- localdrake:
+ o do not make /etc/sysconfig/i18n readable only by root in high
+ security level (#39027)
- scannerdrake:
o use provides instead of package name now that gurpmi handle them
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;