diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-17 13:24:53 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-17 13:24:53 +0000 |
commit | d101869e6a8052ef2bd1025b8c44b25f003c8477 (patch) | |
tree | 4c920eca6652c1b2b32394cf7735849535df8afb /perl-install/install2.pm | |
parent | 725eb30eece4ac2505be940bc20962926ec04042 (diff) | |
download | drakx-d101869e6a8052ef2bd1025b8c44b25f003c8477.tar drakx-d101869e6a8052ef2bd1025b8c44b25f003c8477.tar.gz drakx-d101869e6a8052ef2bd1025b8c44b25f003c8477.tar.bz2 drakx-d101869e6a8052ef2bd1025b8c44b25f003c8477.tar.xz drakx-d101869e6a8052ef2bd1025b8c44b25f003c8477.zip |
don't security::various::config_security_user() can fail, don't let it bother us
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index c568e59f0..b56b0c418 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -282,7 +282,7 @@ sub setupBootloader { installStepsCall($o, $auto, 'setupBootloaderBefore') if $ent_number == 1; installStepsCall($o, $auto, 'setupBootloader'); - install_any::set_security($o); + eval { install_any::set_security($o) }; } #------------------------------------------------------------------------------ sub configureX { |