summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm6
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) = @_;