diff options
-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]); } |