diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-05 16:43:48 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-05 16:43:48 +0200 |
| commit | f1c365239ec308d212e6e26ee1424f036ab85de9 (patch) | |
| tree | 97ad4ca6c11774138db81493c2a9413a6fefa9d2 | |
| parent | bfd407a6e42ad43f7ab839b1a603a214109e9eef (diff) | |
| download | python-apt-f1c365239ec308d212e6e26ee1424f036ab85de9.tar.gz | |
* debian/changelog: updated
* update-manager:
- run the pre-upgrade code as well
| -rw-r--r-- | debian/changelog | 2 | ||||
| -rw-r--r-- | update-manager | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 76a8e64d..f797ce0a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,7 +6,7 @@ update-manager (0.44.6) edgy; urgency=low that after e.g. a CDROM upgrade the rest of the system can still be fully upgraded over the net - -- Michael Vogt <michael.vogt@ubuntu.com> Mon, 4 Sep 2006 22:49:43 +0200 + -- Michael Vogt <michael.vogt@ubuntu.com> Tue, 5 Sep 2006 13:30:22 +0200 update-manager (0.44.5) edgy; urgency=low diff --git a/update-manager b/update-manager index ebd8339a..cfaec01c 100644 --- a/update-manager +++ b/update-manager @@ -74,7 +74,8 @@ if __name__ == "__main__": view.hideStep(STEP_MODIFY_SOURCES) view.hideStep(STEP_REBOOT) controler = DistUpgradeControler(view, datadir=data_dir) - controler.openCache() + controler.prepare() + controler.doPreUpgrade() if controler.askDistUpgrade(): view.setStep(STEP_FETCH_INSTALL) controler.doDistUpgrade() |
