From: Peter Krempa Date: Wed, 3 Apr 2024 05:07:57 +0000 (+0200) Subject: vsh: Add a VSH_OT_STRING argument for 'virsh echo' X-Git-Tag: v10.3.0-rc1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9950aef28222df1f9937040d9417fea846d87c6b;p=thirdparty%2Flibvirt.git vsh: Add a VSH_OT_STRING argument for 'virsh echo' The argument will be used for testing the command/option completer function. Signed-off-by: Peter Krempa Reviewed-by: Michal Privoznik --- diff --git a/tools/vsh.c b/tools/vsh.c index 1e8be2393e..7853e7cc6d 100644 --- a/tools/vsh.c +++ b/tools/vsh.c @@ -3250,6 +3250,10 @@ const vshCmdOptDef opts_echo[] = { .type = VSH_OT_ALIAS, .help = "string=hello" }, + {.name = "prefix", + .type = VSH_OT_STRING, + .help = N_("prefix the message") + }, {.name = "string", .type = VSH_OT_ARGV, .positional = true, @@ -3273,6 +3277,7 @@ cmdEcho(vshControl *ctl, const vshCmd *cmd) bool xml = vshCommandOptBool(cmd, "xml"); bool err = vshCommandOptBool(cmd, "err"); bool split = vshCommandOptBool(cmd, "split"); + const char *prefix; const vshCmdOpt *opt = NULL; g_autofree char *arg = NULL; g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER; @@ -3281,6 +3286,11 @@ cmdEcho(vshControl *ctl, const vshCmd *cmd) VSH_EXCLUSIVE_OPTIONS_VAR(shell, split); VSH_EXCLUSIVE_OPTIONS_VAR(xml, split); + ignore_value(vshCommandOptString(ctl, cmd, "prefix", &prefix)); + + if (prefix) + virBufferAsprintf(&buf, "%s ", prefix); + while ((opt = vshCommandOptArgv(ctl, cmd, opt))) { const char *curr = opt->data;