diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-02-20 19:33:40 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-02-20 19:33:40 +0000 |
commit | 20ee8b3b12fbe01b13ef4fc3e2cbe7a154e755aa (patch) | |
tree | ebbb1c9324fec3ed437e593b91fd024c1328f66a | |
parent | c5bdf539527faccd83be5661392abac28b5e9969 (diff) | |
download | anaconda-20ee8b3b12fbe01b13ef4fc3e2cbe7a154e755aa.tar.gz anaconda-20ee8b3b12fbe01b13ef4fc3e2cbe7a154e755aa.tar.xz anaconda-20ee8b3b12fbe01b13ef4fc3e2cbe7a154e755aa.zip |
hmm, guess we should actually exit if we say we're going to reboot (#84663)
-rw-r--r-- | autopart.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autopart.py b/autopart.py index 70ef200ac..1ef172096 100644 --- a/autopart.py +++ b/autopart.py @@ -1287,6 +1287,7 @@ def doAutoPartition(dir, diskset, partitions, intf, instClass, dispatch): "partitioning:\n\n%s\n\n" "Press 'OK' to reboot your system.") % (errors,), custom_icon='error') + sys.exit(0) try: doPartitioning(diskset, partitions, doRefresh = 0) |