diff options
author | Werner Koch <[email protected]> | 2025-01-08 16:10:07 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2025-01-08 16:17:42 +0000 |
commit | a019a0fcd8dfb9d1eae5bc991fdd54b7cf55641e (patch) | |
tree | 6b211dc7805f07b519782e8884d00c598c478c96 /dirmngr | |
parent | Update README and copyright years. (diff) | |
download | gnupg-a019a0fcd8dfb9d1eae5bc991fdd54b7cf55641e.tar.gz gnupg-a019a0fcd8dfb9d1eae5bc991fdd54b7cf55641e.zip |
Stronger deprecate the --supervised option.
* agent/gpg-agent.c (opts): Rename option supervised.
* dirmngr/dirmngr.c (opts): Ditto.
--
The --supervised way to start gpg-agent has been deprecated for 2.5
years and will probably entirely removed with version 2.6.0. To allow
its use until its removal the systemd service description need to be
adjusted to use this option. The reason for the deprecation are
conflicts with the way systemd starts gpg-agent and gpg expects how
gpg-agent is started. In particular gpg expects that the gpg-agent
matching its own version is started. Further the systemd way is not
portable to other platforms and long term experience on Windows has
show that the standard way of starting gpg-agent is less error prone.
Note to those who want to re-introduse this option: Pretty please do
not use socket names conflicting with our standard socket names. For
example use /run/user/1000/foo-gnupg/S.gpg-agent.
Diffstat (limited to 'dirmngr')
-rw-r--r-- | dirmngr/dirmngr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dirmngr/dirmngr.c b/dirmngr/dirmngr.c index b2af737d5..e9709d766 100644 --- a/dirmngr/dirmngr.c +++ b/dirmngr/dirmngr.c @@ -177,7 +177,7 @@ static gpgrt_opt_t opts[] = { ARGPARSE_c (aServer, "server", N_("run in server mode (foreground)") ), ARGPARSE_c (aDaemon, "daemon", N_("run in daemon mode (background)") ), #ifndef HAVE_W32_SYSTEM - ARGPARSE_c (aSupervised, "supervised", "@"), + ARGPARSE_c (aSupervised, "deprecated-supervised", "@"), #endif ARGPARSE_c (aListCRLs, "list-crls", N_("list the contents of the CRL cache")), ARGPARSE_c (aLoadCRL, "load-crl", N_("|FILE|load CRL from FILE into cache")), |