We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90f222e commit 7ef5257Copy full SHA for 7ef5257
scripts/mysqld_safe.sh
@@ -332,14 +332,21 @@ parse_arguments() {
332
--timezone=*) TZ="$val"; export TZ; ;;
333
--flush[-_]caches) flush_caches=1 ;;
334
--numa[-_]interleave) numa_interleave=1 ;;
335
- --wsrep[-_]on) wsrep_on=1 ;;
336
- --skip[-_]wsrep[-_]on) wsrep_on=0 ;;
+ --wsrep[-_]on)
+ wsrep_on=1
337
+ append_arg_to_args "$arg"
338
+ ;;
339
+ --skip[-_]wsrep[-_]on)
340
+ wsrep_on=0
341
342
343
--wsrep[-_]on=*)
344
if echo $val | grep -iq '\(ON\|1\)'; then
345
wsrep_on=1
346
else
347
wsrep_on=0
348
fi
349
350
;;
351
--wsrep[-_]urls=*) wsrep_urls="$val"; ;;
352
--wsrep[-_]provider=*)
0 commit comments