diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-06 04:35:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-06 04:35:16 +0000 |
commit | f49d1995e8d402461242500a50ae724ffb9ab176 (patch) | |
tree | 85b1d68cc42ac8f4d453dc49525bd75434a479f4 /perl-install/install_steps.pm | |
parent | 7a8650bf7aa5ddf751bbc32ded553a84bfde2186 (diff) | |
download | drakx-f49d1995e8d402461242500a50ae724ffb9ab176.tar drakx-f49d1995e8d402461242500a50ae724ffb9ab176.tar.gz drakx-f49d1995e8d402461242500a50ae724ffb9ab176.tar.bz2 drakx-f49d1995e8d402461242500a50ae724ffb9ab176.tar.xz drakx-f49d1995e8d402461242500a50ae724ffb9ab176.zip |
use bootloader->{message_text} instead of bootloader->{message}
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 4f345bd63..a3a212689 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -782,6 +782,12 @@ sub setupBootloaderBefore { require bootloader; + #- auto_install backward compatibility + #- one should now use {message_text} + if ($o->{bootloader}{message} =~ m!^[^/]!) { + $o->{bootloader}{message_text} = delete $o->{bootloader}{message}; + } + #- remove previous ide-scsi lines bootloader::modify_append($o->{bootloader}, sub { my ($_simple, $dict) = @_; |