diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-08-02 11:50:19 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-08-02 11:50:19 +0200 |
commit | 82cb2b8140fbe21a7000fcf2f3641f18fd0c0d27 (patch) | |
tree | 79cb166ac601441f3559e1d1a30eb76237fc700f /debian/apt.postinst | |
parent | 095aa04a3dc4b9a57f904c8bfbb5980aae11f53b (diff) |
* debian/apt.postinst:
- do not fail if ubuntu-keyring is not installed
Diffstat (limited to 'debian/apt.postinst')
-rw-r--r-- | debian/apt.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/apt.postinst b/debian/apt.postinst index 34545468e..2ebcfb19b 100644 --- a/debian/apt.postinst +++ b/debian/apt.postinst @@ -18,7 +18,7 @@ case "$1" in if ! test -f /etc/apt/trusted.gpg; then cp /usr/share/apt/ubuntu-archive.gpg /etc/apt/trusted.gpg fi - apt-key update + apt-key update || true ;; abort-upgrade|abort-remove|abort-deconfigure) |