diff options
author | 2007-01-30 02:17:48 +0000 | |
---|---|---|
committer | 2007-01-30 02:17:48 +0000 | |
commit | dd8c6b2040321c177e1a5743eb94a12a35666b60 (patch) | |
tree | e1785faf438f976b033e7e8991bb0686739a65b1 /src/fe/dialog | |
parent | lets hope this will actually work this time. (diff) | |
download | gli-dd8c6b2040321c177e1a5743eb94a12a35666b60.tar.gz gli-dd8c6b2040321c177e1a5743eb94a12a35666b60.tar.bz2 gli-dd8c6b2040321c177e1a5743eb94a12a35666b60.zip |
helps to install the bootloader before you use it
add else line to restart the gauge to make the
screen not look like crap
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/branches/overhaul@1672 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'src/fe/dialog')
-rwxr-xr-x | src/fe/dialog/gli-dialog.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fe/dialog/gli-dialog.py b/src/fe/dialog/gli-dialog.py index f089dec..0e541eb 100755 --- a/src/fe/dialog/gli-dialog.py +++ b/src/fe/dialog/gli-dialog.py @@ -2065,7 +2065,7 @@ Press OK to continue""") self.do_steps(['install_logging_daemon','install_cron_daemon','install_filesystem_tools']) self.set_boot_loader() - self.do_steps(['setup_and_run_bootloader']) + self.do_steps(['install_bootloader','setup_and_run_bootloader']) self.set_additional_users() self.do_steps(['update_config_files','set_users']) @@ -2119,7 +2119,8 @@ Press OK to continue""") if self.just_starting == 1: self._d.gauge_start(_(u"Installation Started!"), title=_(u"Installation progress")) self.just_starting = 0 - + else: + self._d.gauge_start(_(u"Continuing Installation"), title=_(u"Installation progress")) self.num_steps_completed = 1 self.num_steps = len(install_steps) step_name = install_steps.pop(0) |