From 2767cc29159fa31a0b96cb51ab9e507d5ba9cb9c Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Sat, 13 Aug 2016 09:47:50 +0200 Subject: [PATCH] Added connections-max-wait-state setting alias --- include/profiles | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/profiles b/include/profiles index 726aa7e6..427c6f78 100644 --- a/include/profiles +++ b/include/profiles @@ -43,6 +43,7 @@ case ${OPTION} in # Define which compliance standards are enabled + # For this to work, the Enterprise plugins are needed compliance_standards | check-compliance) COMPLIANCE_STANDARDS_ENABLED=$(echo ${VALUE} | tr ',' ' ') for STANDARD in ${COMPLIANCE_STANDARDS_ENABLED}; do @@ -62,7 +63,7 @@ CHECK_VALUE_ARRAY="${CHECK_OPTION_ARRAY} ${STRING}" ;; # Maximum number of WAITing connections - connections_max_wait_state) + connections-max-wait-state | connections_max_wait_state) OPTIONS_CONN_MAX_WAIT_STATE="${VALUE}" AddSetting "connections-max-wait-state" "${OPTIONS_CONN_MAX_WAIT_STATE}" "Connections (max-wait-state)" ;;