Add passive to help alter maxscale output

The command was missing from the help output.
This commit is contained in:
Markus Mäkelä
2018-02-07 17:39:14 +02:00
parent 2b25ec13d8
commit 823fe902d4
3 changed files with 7 additions and 2 deletions

View File

@ -590,7 +590,8 @@ of parameters can be altered at runtime:
"auth_read_timeout", "auth_read_timeout",
"auth_write_timeout", "auth_write_timeout",
"admin_auth", "admin_auth",
"admin_log_auth_failures" "admin_log_auth_failures",
"passive"
] ]
## rotate ## rotate

View File

@ -1,5 +1,8 @@
#!/bin/bash #!/bin/bash
# Install dependencies
npm i
ITEMS=`node maxctrl.js help|awk '/^$/{p=0} {if(p){print $1}}/Commands:/{p=1}'` ITEMS=`node maxctrl.js help|awk '/^$/{p=0} {if(p){print $1}}/Commands:/{p=1}'`
TOC=$(for i in $ITEMS TOC=$(for i in $ITEMS

View File

@ -35,7 +35,8 @@ const maxscale_params = [
'auth_read_timeout', 'auth_read_timeout',
'auth_write_timeout', 'auth_write_timeout',
'admin_auth', 'admin_auth',
'admin_log_auth_failures' 'admin_log_auth_failures',
'passive'
] ]
exports.command = 'alter <command>' exports.command = 'alter <command>'