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:
Diffstat (limited to 'include/tests_custom.template')
-rw-r--r--include/tests_custom.template4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tests_custom.template b/include/tests_custom.template
index 284c4a67..b84badd7 100644
--- a/include/tests_custom.template
+++ b/include/tests_custom.template
@@ -16,7 +16,7 @@
# Register our first custom test
# We consider it to be a lightweight test (no heavy IO, or long searches), no network connection needed
- Register --test-no CUST-0001 --weight L --network NO --description "A test case for colors and text display"
+ Register --test-no CUST-0001 --weight L --network NO --category security --description "A test case for colors and text display"
if [ ${SKIPTEST} -eq 0 ]; then
# The Display function makes it easy to show something on screen, with colors.
# --indent defines amount of spaces
@@ -81,7 +81,7 @@
#
# First check if OPENSSLBINARY is known as a prerequisite for this test.
if [ ! "${OPENSSLBINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
- Register --test-no CUST-0002 --preqs-met ${PREQS_MET} --weight M --network NO --description "Description of custom test"
+ Register --test-no CUST-0002 --preqs-met ${PREQS_MET} --weight M --network NO --category security --description "Description of custom test"
if [ ${SKIPTEST} -eq 0 ]; then
FOUNDPROBLEM=0
DIR="/my/path"