summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorStefan Lippers-Hollmann <s.L-H@gmx.de>2011-02-08 22:26:15 +0100
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-02-08 22:26:15 +0100
commitd4e80f1f0f75ef0409ba702c7ef866fbf437b8cb (patch)
treefc85f51175fb60699c5477af20bc90297433d3dc /cmdline
parent24f634e951df86f41ae1838f2acd99f6657a3c84 (diff)
[ Stefan Lippers-Hollmann ]
* cmdline/apt-key: - fix root test which prevented setting of trustdb-name which lets gpg fail if it adds/remove keys from trusted.gpg as it tries to open the (maybe) not existent /root/.gnupg
Diffstat (limited to 'cmdline')
-rwxr-xr-xcmdline/apt-key2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-key b/cmdline/apt-key
index c1e01a776..3838fafcd 100755
--- a/cmdline/apt-key
+++ b/cmdline/apt-key
@@ -7,7 +7,7 @@ unset GREP_OPTIONS
# implodes if there isn't one available
GPG_CMD='gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg'
-if ! id -u > /dev/null; then
+if [ "$(id -u)" -eq 0 ]; then
GPG_CMD="$GPG_CMD --trustdb-name /etc/apt/trustdb.gpg"
fi