~mvo/update-manager/release-notes-markup

« back to all changes in this revision

Viewing changes to UpdateManager/UpdateManager.py

  • Committer: Michael Vogt
  • Date: 2005-12-05 12:58:50 UTC
  • Revision ID: egon@top-20051205125850-b0e7d4af37fa31ab
* DistUpgrade/ tool started
* SoftwareProperties/aptsources.py:
  - added "backup" and some comments
* UpdateManager/UpdateManager.py:
  - comments updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
672
672
          fetcher.Run()
673
673
          print "Done downloading"
674
674
 
 
675
          # extract the tarbal
675
676
          print "extracting"
676
677
          tar = tarfile.open(tmpdir+"/"+os.path.basename(uri),"r")
677
678
          for tarinfo in tar:
678
679
              tar.extract(tarinfo)
679
680
          tar.close()
 
681
 
 
682
          # FIXME: check a internal dependency file to make sure
 
683
          #        that the script will run correctly
 
684
          
680
685
          # see if we have a script file that we can run
681
686
          script = "%s/%s" % (tmpdir, self.new_dist.name)
682
687
          if not os.path.exists(script):