summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-06-17 21:19:23 +0000
committerMike Fulbright <msf@redhat.com>2002-06-17 21:19:23 +0000
commitd8b86cf928b147528d71e64d5ec86eec38dfe2eb (patch)
treeec5ddff2863de76069f2a872ab6352f19c9e2ade /autopart.py
parent59f55a5eccf7bc243352b72ee730d02dc35678c2 (diff)
downloadanaconda-d8b86cf928b147528d71e64d5ec86eec38dfe2eb.tar.gz
anaconda-d8b86cf928b147528d71e64d5ec86eec38dfe2eb.tar.xz
anaconda-d8b86cf928b147528d71e64d5ec86eec38dfe2eb.zip
make it so you get another chance if autopartitioning fails
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/autopart.py b/autopart.py
index ea337ce88..32569bec1 100644
--- a/autopart.py
+++ b/autopart.py
@@ -1001,8 +1001,14 @@ def doAutoPartition(dir, diskset, partitions, intf, instClass, dispatch):
intf.messageWindow(_("Partition Request Sanity Check Errors"),
_("The following errors occurred with your "
"partitioning:\n\n%s\n\n"
- "Press OK to reboot your system.") % (errortxt))
- sys.exit(0)
+ "This can happen when there is not enough "
+ "space on your disk drive(s) for autopartitioning "
+ "to succeed. You may need to manually "
+ "partition your drives to complete the install.\n\n"
+ "Press OK to continue.") % (errortxt))
+ return DISPATCH_BACK
+# "Press OK to reboot your system.") % (errortxt))
+# sys.exit(0)
def autoCreatePartitionRequests(autoreq):
"""Return a list of requests created with a shorthand notation.