diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-11 16:12:56 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-11 16:12:56 +0000 |
commit | e7c248176455c53e143b4f4715a820ae1e5947df (patch) | |
tree | d173c65659cb4ac6f0b063be4da6d6db3ff3b22e /perl-install | |
parent | 3c76b9b600327f524fddddd94a4f344e8780b9ec (diff) | |
download | drakx-e7c248176455c53e143b4f4715a820ae1e5947df.tar drakx-e7c248176455c53e143b4f4715a820ae1e5947df.tar.gz drakx-e7c248176455c53e143b4f4715a820ae1e5947df.tar.bz2 drakx-e7c248176455c53e143b4f4715a820ae1e5947df.tar.xz drakx-e7c248176455c53e143b4f4715a820ae1e5947df.zip |
nice message when rebootNeeded in auto_install (otherwise it reboots without prompting)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_auto_install.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/perl-install/install_steps_auto_install.pm b/perl-install/install_steps_auto_install.pm index cd0282800..734403f90 100644 --- a/perl-install/install_steps_auto_install.pm +++ b/perl-install/install_steps_auto_install.pm @@ -79,6 +79,13 @@ sub enteringStep { $o->install_steps::enteringStep($step); } +sub rebootNeeded { + my ($o) = @_; + print "\nWhile partitioning, the partition table re-read failed, needing a reboot\n"; + print "This is plain wrong for an auto_install\n"; + errorInStep(); +} + sub ask_warn { log::l(ref $_[1] ? join " ", @{$_[1]} : $_[1]); } |