diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-07-16 14:21:51 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-07-16 14:21:51 +0200 |
commit | 285feb3cedca3cccff971155099adef8d902223d (patch) | |
tree | 87c97ee27b2586a7e82b5c0f938d687df5fa67a9 /debian/apt.postinst | |
parent | 0df8c3dccbda739af6e20999fb208ada0619ad80 (diff) |
* cmdline/apt-key:
- use a tmpfile instead of /etc/apt/secring.gpg (Closes: #632596)
* debian/apt.postinst:
- remove /etc/apt/secring.gpg if it is an empty file
Diffstat (limited to 'debian/apt.postinst')
-rw-r--r-- | debian/apt.postinst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/apt.postinst b/debian/apt.postinst index cc0d8b1fe..4d87c4e25 100644 --- a/debian/apt.postinst +++ b/debian/apt.postinst @@ -15,6 +15,11 @@ set -e case "$1" in configure) + SECRING='/etc/apt/secring.gpg' + # test if secring is an empty normal file + if test -f $SECRING -a ! -s $SECRING; then + rm -f $SECRING + fi apt-key update ;; |