Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Boelen <michael.boelen@cisofy.com>2016-08-13 10:47:50 +0300
committerMichael Boelen <michael.boelen@cisofy.com>2016-08-13 10:47:50 +0300
commit2767cc29159fa31a0b96cb51ab9e507d5ba9cb9c (patch)
tree2f61304778358ddd8902d4331e728bc713594f61 /include
parentbcfdcc2b97e315940ab6569ccc6e0e7ac3d24258 (diff)
Added connections-max-wait-state setting alias
Diffstat (limited to 'include')
-rw-r--r--include/profiles3
1 files changed, 2 insertions, 1 deletions
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)"
;;