From b0c2dc78af0ede16b79bbb5689373da1fa080581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Wed, 30 Jan 2019 18:44:38 +0200 Subject: [PATCH] MXS-2305: Show Linux users in `list users` The linux users were missing from the `list users` output. --- maxctrl/lib/list.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maxctrl/lib/list.js b/maxctrl/lib/list.js index dd98aa04f..f7a18594c 100644 --- a/maxctrl/lib/list.js +++ b/maxctrl/lib/list.js @@ -166,12 +166,12 @@ exports.builder = function(yargs) { ]) }) }) - .command('users', 'List created network users', function(yargs) { - return yargs.epilog('List the users that can be used to connect to the MaxScale REST API.') + .command('users', 'List created users', function(yargs) { + return yargs.epilog('List network the users that can be used to connect to the MaxScale REST API as well as enabled local accounts.') .usage('Usage: list users') }, function(argv) { maxctrl(argv, function(host) { - return getCollection(host, 'users/inet',[ + return getCollection(host, 'users',[ {'Name':'id'}, {'Type':'type'}, {'Privileges':'attributes.account'},