diff options
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 28ecc1787..d7a3369bd 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -87,6 +87,10 @@ sub acceptLicense { }, [ { list => [ N_("Accept"), N_("Refuse") ], val => \$r, type => 'list', format => sub { translate($_[0]) } } ])) or do { + if ($::globetrotter) { + system("killall XFree86"); + exec("/sbin/reboot"); + }; install_any::ejectCdrom(); $o->exit; }; |