aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPreston Cody <codeman@gentoo.org>2007-02-07 03:50:22 +0000
committerPreston Cody <codeman@gentoo.org>2007-02-07 03:50:22 +0000
commit6275400203a20f8359376d410c0536509c365145 (patch)
tree44536c9d720a1553ff06607e7e30c712d7c6ada4 /src/fe/dialog
parentupdating TODO (diff)
downloadgli-6275400203a20f8359376d410c0536509c365145.tar.gz
gli-6275400203a20f8359376d410c0536509c365145.tar.bz2
gli-6275400203a20f8359376d410c0536509c365145.zip
added debugging to hopefully expose the self._mounted_devices bug
gli-d: don't run phase5 when not in profile mode. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/branches/overhaul@1677 f8877401-5920-0410-a79b-8e2d7e04ca0d
Diffstat (limited to 'src/fe/dialog')
-rwxr-xr-xsrc/fe/dialog/gli-dialog.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fe/dialog/gli-dialog.py b/src/fe/dialog/gli-dialog.py
index 72eb6c8..c8ae4cd 100755
--- a/src/fe/dialog/gli-dialog.py
+++ b/src/fe/dialog/gli-dialog.py
@@ -135,6 +135,7 @@ Press OK to continue""")
if self.profile_xml_file != None:
self._install_profile.parse(self.profile_xml_file)
self.run_phase5()
+ sys.exit(0)
############ STAGE1 FUNCTIONS #################
@@ -2083,7 +2084,7 @@ Press OK to continue""")
#Save the profile
- self.save_install_profile()
+# self.save_install_profile()
def run_phase5(self):
#test function for getting steps.
@@ -2121,7 +2122,7 @@ Press OK to continue""")
install_steps = list(install_steps)
# self._cc.start_install()
if self.just_starting == 1:
- self._d.gauge_start(_(u"Installation Started!"), title=_(u"Installation progress"))
+ self._d.gauge_start(_(u"Installation Started!"), title=_(u"Installation progress"), height="10")
self.just_starting = 0
else:
self._d.gauge_start(_(u"Continuing Installation"), title=_(u"Installation progress"), height="10")
@@ -2193,7 +2194,7 @@ if __name__ == '__main__':
gli.run_phase2() #Do partitioning
gli.run_phase3() #Install stage tarball and portage
gli.run_phase4() #Do everything else
- gli.run_phase5() #Execute the installation
+