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
11
configure.ac
11
configure.ac
|
@ -92,7 +92,7 @@ disable_keyserver_path=no
|
|||
card_support=yes
|
||||
use_ccid_driver=yes
|
||||
use_standard_socket=yes
|
||||
dirmngr_auto_start=no
|
||||
dirmngr_auto_start=yes
|
||||
|
||||
try_ks_ldap=no
|
||||
|
||||
|
@ -428,15 +428,10 @@ AC_ARG_ENABLE(ccid-driver,
|
|||
use_ccid_driver=$enableval)
|
||||
AC_MSG_RESULT($use_ccid_driver)
|
||||
|
||||
#
|
||||
# Dirmngr is nowadays a system service and thus it usually does no
|
||||
# make sense to start it as needed. However on some systems this is
|
||||
# possible; this option enable the feature.
|
||||
#
|
||||
AC_MSG_CHECKING([whether to auto start dirmngr])
|
||||
AC_ARG_ENABLE(dirmngr-auto-start,
|
||||
AC_HELP_STRING([--enable-dirmngr-auto-start],
|
||||
[enable auto starting of the dirmngr]),
|
||||
AC_HELP_STRING([--disable-dirmngr-auto-start],
|
||||
[disable auto starting of the dirmngr]),
|
||||
dirmngr_auto_start=$enableval)
|
||||
AC_MSG_RESULT($dirmngr_auto_start)
|
||||
if test "$dirmngr_auto_start" = yes ; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue