mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
dirmngr: Default to a user socket name and enable autostart.
* common/homedir.c (dirmngr_socket_name): Rename to dirmngr_sys_socket_name. (dirmngr_user_socket_name): New. * common/asshelp.c (start_new_dirmngr): Handle sys and user dirmngr socket. * dirmngr/dirmngr.c (main): Ditto. * dirmngr/server.c (cmd_getinfo): Ditto. * sm/server.c (gpgsm_server): Ditto. * dirmngr/dirmngr-client.c (start_dirmngr): Likewise. * tools/gpgconf.c (main): Print "dirmngr-sys-socket" with --list-dirs. * configure.ac (USE_DIRMNGR_AUTO_START): Set by default.
This commit is contained in:
parent
6dd5d99a61
commit
5d321eb00b
9 changed files with 101 additions and 26 deletions
|
@ -347,8 +347,20 @@ main (int argc, char **argv)
|
|||
gc_percent_escape (gnupg_datadir ()));
|
||||
es_fprintf (outfp, "localedir:%s\n",
|
||||
gc_percent_escape (gnupg_localedir ()));
|
||||
es_fprintf (outfp, "dirmngr-socket:%s\n",
|
||||
gc_percent_escape (dirmngr_socket_name ()));
|
||||
|
||||
if (dirmngr_user_socket_name ())
|
||||
{
|
||||
es_fprintf (outfp, "dirmngr-socket:%s\n",
|
||||
gc_percent_escape (dirmngr_user_socket_name ()));
|
||||
es_fprintf (outfp, "dirmngr-sys-socket:%s\n",
|
||||
gc_percent_escape (dirmngr_sys_socket_name ()));
|
||||
}
|
||||
else
|
||||
{
|
||||
es_fprintf (outfp, "dirmngr-socket:%s\n",
|
||||
gc_percent_escape (dirmngr_sys_socket_name ()));
|
||||
}
|
||||
|
||||
{
|
||||
char *infostr = getenv (GPG_AGENT_INFO_NAME);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue