diff options
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index cd994fcf3..c93f090a8 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - log install settings (mga#3467 & mga#5209) +- do not set security level to its own value on upgrade (mga#5147) Version 14.1 - 23 March 2012 diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index c9d2dde5c..53e87f0c3 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -813,7 +813,7 @@ sub miscellaneousAfter { addToBeDone { addVarsInSh("$::prefix/etc/sysconfig/system", { META_CLASS => $o->{meta_class} }); - eval { install::any::set_security($o) }; + eval { install::any::set_security($o) } if !$o->{isUpgrade}; } 'installPackages'; } |