From: Lennart Poettering Date: Mon, 8 Nov 2021 16:27:26 +0000 (+0100) Subject: userdbctl: add a switch for explicitly enabling/disabling multiplexer-based lookups X-Git-Tag: v250-rc1~333^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4083d825e9e82e6e7500da41d668d3a76c16fb98;p=thirdparty%2Fsystemd.git userdbctl: add a switch for explicitly enabling/disabling multiplexer-based lookups This is incredibly useful for debugging. --- diff --git a/src/userdb/userdbctl.c b/src/userdb/userdbctl.c index 11b3a1c921e..5f3831d70c0 100644 --- a/src/userdb/userdbctl.c +++ b/src/userdb/userdbctl.c @@ -617,6 +617,7 @@ static int help(int argc, char *argv[], void *userdata) { " --synthesize=BOOL Synthesize root/nobody user\n" " --with-dropin=BOOL Control whether to include drop-in records\n" " --with-varlink=BOOL Control whether to talk to services at all\n" + " --multiplexer=BOOL Control whether to use the multiplexer\n" " --json=pretty|short JSON output mode\n" "\nSee the %s for details.\n", program_invocation_short_name, @@ -638,6 +639,7 @@ static int parse_argv(int argc, char *argv[]) { ARG_WITH_DROPIN, ARG_WITH_VARLINK, ARG_SYNTHESIZE, + ARG_MULTIPLEXER, ARG_JSON, }; @@ -652,6 +654,7 @@ static int parse_argv(int argc, char *argv[]) { { "with-dropin", required_argument, NULL, ARG_WITH_DROPIN }, { "with-varlink", required_argument, NULL, ARG_WITH_VARLINK }, { "synthesize", required_argument, NULL, ARG_SYNTHESIZE }, + { "multiplexer", required_argument, NULL, ARG_MULTIPLEXER }, { "json", required_argument, NULL, ARG_JSON }, {} }; @@ -787,6 +790,14 @@ static int parse_argv(int argc, char *argv[]) { SET_FLAG(arg_userdb_flags, USERDB_DONT_SYNTHESIZE, !r); break; + case ARG_MULTIPLEXER: + r = parse_boolean_argument("--multiplexer=", optarg, NULL); + if (r < 0) + return r; + + SET_FLAG(arg_userdb_flags, USERDB_AVOID_MULTIPLEXER, !r); + break; + case '?': return -EINVAL;