diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-25 17:19:12 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-25 17:19:12 +0000 |
commit | 844e2a059f7a57b33b0203fe5eb8d12afc46018f (patch) | |
tree | ee7495d793f4415fa7c2834349e854a317f5d98f /todo.py | |
parent | a68e1049a4ce4ff9cf2b2fb952125c7059d92361 (diff) | |
download | anaconda-844e2a059f7a57b33b0203fe5eb8d12afc46018f.tar.gz anaconda-844e2a059f7a57b33b0203fe5eb8d12afc46018f.tar.xz anaconda-844e2a059f7a57b33b0203fe5eb8d12afc46018f.zip |
fix broken upgrades
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -568,7 +568,12 @@ class ToDo: _("Error mounting %s: %s") % (device, msg)) os.remove( '/tmp/' + device); - os.mkdir (self.instPath + '/proc') + try: + os.mkdir (self.instPath + '/proc') + except: + pass + + isys.mount('/proc', self.instPath + '/proc', 'proc') def makeFilesystems(self, createSwap = 1, createFs = 1): |