diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-07-25 14:23:37 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-07-25 14:23:37 +0000 |
commit | 3fab5839fd27531dab5f2f41462c28669d0cb0b5 (patch) | |
tree | fe74c7de6779d7368bbff00a2a84b073a99639d3 /packages.py | |
parent | a2709261ff2f90b9c9b95d02a12a9dbe7e9bff8c (diff) | |
download | anaconda-3fab5839fd27531dab5f2f41462c28669d0cb0b5.tar.gz anaconda-3fab5839fd27531dab5f2f41462c28669d0cb0b5.tar.xz anaconda-3fab5839fd27531dab5f2f41462c28669d0cb0b5.zip |
minimally intrusive change to make it so that you can go back and then forward again (#69783). should put the better fix in maybe after the beta, definitely after release
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/packages.py b/packages.py index ad853e9a1..7f78520b9 100644 --- a/packages.py +++ b/packages.py @@ -541,12 +541,11 @@ def doPreInstall(method, id, intf, instPath, dir): try: os.symlink("/mnt/sysimage/var/tmp", "/var/tmp") except: - intf.messageWindow(_("Error"), - _("Unable to create symlink for /var/tmp. This " - "should only happen if there were errors " - "creating your filesystems.\n\n" - "Press the OK button to reboot your system.")) - sys.exit(0) + # could be a problem later, but the most likely cause is that + # they've had to go deselect packages and then try again + # FIXME: maybe we should verify it's the symlink we want and + # iutil.rmrf it if not? + log("unable to create symlink for /var/tmp. assuming already created") # try to copy the comps package. if it doesn't work, don't worry about it try: |