diff options
author | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-07-10 20:02:11 -0400 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@phys.columbia.edu> | 2008-07-10 20:02:11 -0400 |
commit | dfe9a2c7b13a037f161a55daae52e4cccdae463f (patch) | |
tree | fed84517f0ee3c2fc18cea34043ab863450768a3 /debian | |
parent | c9260d86968ed2a0ba302ce2a3f9fc6e94f6d39a (diff) |
Fix bug in gpg.conf generation.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/monkeysphere.postinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/monkeysphere.postinst b/debian/monkeysphere.postinst index a133a4b..ad96a22 100755 --- a/debian/monkeysphere.postinst +++ b/debian/monkeysphere.postinst @@ -28,7 +28,7 @@ install --owner monkeysphere --group monkeysphere --mode 700 -d "$VARLIB"/gnupg- # install authentication gpg.conf cat <<EOF > "$VARLIB"/gnupg-authentication/gpg.conf list-options show-uid-validity -primary-keyring "$VARLIB"/gnupg-authentication/pubring.gpg -keyring "$VARLIB"/gnupg-host/pubring.gpg +primary-keyring $VARLIB/gnupg-authentication/pubring.gpg +keyring $VARLIB/gnupg-host/pubring.gpg EOF chown monkeysphere:monkeysphere "$VARLIB"/gnupg-authentication/gpg.conf |