diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-08-02 10:33:16 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-08-02 10:33:16 +0200 |
| commit | eb74fddcc11cf40ef207157a36308aa29801e907 (patch) | |
| tree | 50200adfc5ab73c0e97003768f0fd618bea2233b | |
| parent | 19639e82319463cfb5c311155d63e06dd8ad5bde (diff) | |
| download | python-apt-eb74fddcc11cf40ef207157a36308aa29801e907.tar.gz | |
* UpdateManager/DistUpgradeFetcher.py:
- don't use the trustdb anymore because it if mode 0600 and can't
be read as user
| -rw-r--r-- | UpdateManager/DistUpgradeFetcher.py | 4 | ||||
| -rw-r--r-- | debian/changelog | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py index 4aacdae4..af07cfb4 100644 --- a/UpdateManager/DistUpgradeFetcher.py +++ b/UpdateManager/DistUpgradeFetcher.py @@ -105,15 +105,13 @@ class DistUpgradeFetcher(object): return True def gpgauthenticate(self, file, signature, - keyring='/etc/apt/trusted.gpg', - trustdb='/etc/apt/trustdb.gpg'): + keyring='/etc/apt/trusted.gpg'): """ authenticated a file against a given signature, if no keyring is given use the apt default keyring """ gpg = GnuPGInterface.GnuPG() gpg.options.extra_args = ['--no-options', '--no-default-keyring', - '--trustdb-name',trustdb, '--keyring', keyring] proc = gpg.run(['--verify', signature, file], create_fhs=['status','logger','stderr']) diff --git a/debian/changelog b/debian/changelog index 981c5564..c5347d2e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +update-manager (0.44.1) edgy; urgency=low + + * make UpdateManager check for new distribution releases by + default again + * fix dist-upgrade fetching when run as root. + + -- + update-manager (0.44) edgy; urgency=low * new SoftwareProperties GUI (thanks to Sebastian Heinlein) |
