mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Deprecate the --supervised options.
* agent/gpg-agent.c (main): Mark --supervised as deprecated. * dirmngr/dirmngr.c (main): Ditto. -- The supervised thing causes more trouble than it pretends to solve.
This commit is contained in:
parent
0f8623d518
commit
ca5d5142c6
4 changed files with 11 additions and 7 deletions
|
@ -167,7 +167,7 @@ static gpgrt_opt_t opts[] = {
|
|||
ARGPARSE_s_n (oDaemon, "daemon", N_("run in daemon mode (background)")),
|
||||
ARGPARSE_s_n (oServer, "server", N_("run in server mode (foreground)")),
|
||||
#ifndef HAVE_W32_SYSTEM
|
||||
ARGPARSE_s_n (oSupervised, "supervised", N_("run in supervised mode")),
|
||||
ARGPARSE_s_n (oSupervised, "supervised", "@"),
|
||||
#endif
|
||||
ARGPARSE_s_n (oNoDetach, "no-detach", N_("do not detach from the console")),
|
||||
ARGPARSE_s_n (oSh, "sh", N_("sh-style command output")),
|
||||
|
@ -1378,6 +1378,9 @@ main (int argc, char **argv)
|
|||
agent_exit (0);
|
||||
}
|
||||
|
||||
if (is_supervised && !opt.quiet)
|
||||
log_info(_("WARNING: \"%s\" is a deprecated option\n"), "--supervised");
|
||||
|
||||
if (is_supervised)
|
||||
;
|
||||
else if (!opt.extra_socket)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue