~mvo/update-manager/not-automatic

« back to all changes in this revision

Viewing changes to DistUpgrade/ChrootNonInteractive.py

  • Committer: Michael Vogt
  • Date: 2006-10-05 14:36:09 UTC
  • mfrom: (358.1.118 main)
  • mto: This revision was merged to the branch mainline in revision 376.
  • Revision ID: michael.vogt@ubuntu.com-20061005143609-d3d486671aba63d3
* merged from mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
            print "Removing: '%s'" % tmpdir
128
128
            os.system("umount %s/dev/pts" % tmpdir)
129
129
            os.system("umount %s/proc" % tmpdir)
 
130
            # HACK: try to lazy umount it at least
 
131
            #os.system("umount -l %s/proc" % tmpdir)
130
132
            shutil.rmtree(tmpdir)
131
133
            
132
134