try to be more forgiving if unlinking fails, because we end up in an unknown
authorZac Medico <zmedico@gentoo.org>
Thu, 11 Feb 2010 18:58:16 +0000 (18:58 -0000)
committerZac Medico <zmedico@gentoo.org>
Thu, 11 Feb 2010 18:58:16 +0000 (18:58 -0000)
state if we die right away, as demonstrated by darkside
(branches/prefix r15337)

svn path=/main/trunk/; revision=15338

pym/portage/dbapi/vartree.py

index 16f600683652fb977ebaaf0e0935a091bc00a710..a5d26c8ea469191c6be04a14d704f423d9c87e71 100644 (file)
@@ -2454,6 +2454,18 @@ class dblink(object):
                                                # suid/sgid files are rendered harmless.
                                                os.chmod(file_name, 0)
                                        os.unlink(file_name)
+                               except OSError as ose:
+                                       # If the chmod or unlink fails, you are in trouble.
+                                       # With Prefix this can be because the file is owned
+                                       # by someone else (a screwup by root?), on a normal
+                                       # system maybe filesystem corruption.  In any case,
+                                       # if we backtrace and die here, we leave the system
+                                       # in a totally undefined state, hence we just bleed
+                                       # like hell and continue to hopefully finish all our
+                                       # administrative and pkg_postinst stuff.
+                                       showMessage(colorize("WARN", _("WARNING:"))
+                                                       + " Could not chmod or unlink %s: %s\n" % (file_name, ose),
+                                                       level=logging.WARN, noiselevel=-1)
                                finally:
                                        if bsd_chflags and pflags != 0:
                                                # Restore the parent flags we saved before unlinking