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:
authorDavid Marzal <2069735+Marzal@users.noreply.github.com>2019-07-31 23:29:26 +0300
committerDavid Marzal <2069735+Marzal@users.noreply.github.com>2019-07-31 23:29:26 +0300
commit28801e7ad743dd4512aee1d01468503863eabfc1 (patch)
treee49a5edf225648070224802c6c810990b22bca6b /include/functions
parent3ea66d429850373affa0854d4509259d56a4e908 (diff)
Clean up of not used legacy functions and not used broken functions
Diffstat (limited to 'include/functions')
-rw-r--r--include/functions196
1 files changed, 0 insertions, 196 deletions
diff --git a/include/functions b/include/functions
index 4c363faa..b8a2891a 100644
--- a/include/functions
+++ b/include/functions
@@ -103,17 +103,6 @@
# WaitForKeyPress Wait for user to press a key to continue
#
#################################################################################
-#
-# Under Development:
-# ----------------------
-# TestCase_Equal Test case for checking if value is equal to something
-# TestCase_NotEqual Test case for checking if value is not equal to something
-# TestCase_GreaterThan Test case for checking if value is greater than something
-# TestCase_GreaterOrEqual Test case for checking if value is greater or equal to something
-# TestCase_LessThan Test case for checking if value is less than something
-# TestCase_LessOrEqual Test case for checking if value is less or equal to something
-#
-#################################################################################
################################################################################
@@ -3373,155 +3362,6 @@
################################################################################
- # Name : TestCase_Equal()
- # Description : Test case for checking if value whether value is equal to value
- # Returns : (0 - SUCCESS; 1 - MEDIUM-VALUED; 2 - FAIL)
- ################################################################################
-
- TestCase_Equal() {
- RETVAL=2
-
- if [ "$#" -lt "2" ]; then
- ReportException "${TEST_NO}" "Error in function call to ${FUNCNAME}"
- else
- LogText "${FUNCNAME}: checking value for application ${APP}"
- LogText "${FUNCNAME}: ${OPTION} is set to ${1}"
- LogText "${FUNCNAME}: check if ${1} is equal to ${2}"
-
- if [ "$1" = "$2" ]; then
- LogText "${FUNCNAME}: ${1} is equal to ${2}"
- RETVAL=0
- fi
-
- if ! [ -z ${3+x} ]; then
- LogText "${FUNCNAME}: ${1} is equal to ${3}"
- if [ "$2" = "$3" ]; then
- LogText "${FUNCNAME}: ${OPTION} is equal to ${3}"
- RETVAL=1
- fi
- fi
- fi
- return ${RETVAL}
- }
-
- ################################################################################
- # Name : TestCase_ValueNotEqual()
- # Description : Test case for checking if value is not equal to something
- # Returns : (0 - SUCCESS; 1 - FAIL)
- ################################################################################
- TestCase_NotEqual() {
- RETVAL=1
- if [ "$#" -ne "2" ]; then
- ReportException "${TEST_NO}" "Error in function call to ${FUNCNAME}"
- else
- LogText "${FUNCNAME}: checking value for application ${APP}"
- LogText "${FUNCNAME}: ${OPTION} is set to ${1}"
-
- if [ "$1" != "$2" ]; then
- LogText "${FUNCNAME}: ${1} is not equal to ${2}"
- RETVAL=0
- else
- LogText "${FUNCNAME}: ${1} is equal to ${2}"
- fi
- fi
- return ${RETVAL}
- }
-
-
- ################################################################################
- # Name : TestCase_GreaterThan()
- # Description : Test case for checking if value is greater than something
- # Returns : (0 - SUCCESS; 1 - FAIL)
- ################################################################################
- TestCase_GreaterThan() {
- RETVAL=1
- if [ "$#" -ne "2" ]; then
- ReportException "${TEST_NO}" "Error in function call to ${FUNCNAME}"
- else
- LogText "${FUNCNAME}: checking value for application ${APP}"
- LogText "${FUNCNAME}: ${OPTION} is set to ${1}"
- LogText "${FUNCNAME}: checking if ${1} is greater than ${2}"
- if [ "$1" > "$2" ]; then
- LogText "${FUNCNAME}: ${1} is greater than ${2}"
- RETVAL=0
- else
- LogText "${FUNCNAME}: ${1} is not greater than ${2}"
- fi
- fi
- return ${RETVAL}
- }
-
-
- ################################################################################
- # Name : TestCase_GreaterOrEqual()
- # Description : Test case for checking if value is greater than something
- # Returns : (0 - SUCCESS; 1 - FAIL)
- ################################################################################
-
- TestCase_GreaterOrEqual() {
- RETVAL=1
- if [ "$#" -ne "2" ]; then
- ReportException "${TEST_NO}" "Error in function call to ${FUNCNAME}"
- else
- LogText "${FUNCNAME}: checking value for application ${APP}"
- LogText "${FUNCNAME}: ${OPTION} is set to ${1}"
- LogText "${FUNCNAME}: checking if ${1} is greater or equal ${2}"
- if [ TestCase_Equal "${1}" "${2}" ] || [ TestCase_GreaterThan "${1}" "${2}" ]; then
- RETVAL=0
- fi
- fi
- return ${RETVAL}
- }
-
-
- ################################################################################
- # Name : TestCase_LessThan()
- # Description : Test case for checking if value is greater than something
- # Returns : (0 - SUCCESS; 1 - FAIL)
- ################################################################################
-
- TestCase_LessThan() {
- RETVAL=1
- if [ "$#" -ne "2" ]; then
- ReportException "${TEST_NO}" "Error in function call to TestCase_GreaterOrEqual"
- else
- LogText "${FUNCNAME}: checking value for application ${APP}"
- LogText "${FUNCNAME}: ${OPTION} is set to ${1}"
-
- LogText "${FUNCNAME}: checking if ${1} is less than ${2}"
- if ! [ TestCase_GreaterOrEqual "${1}" "${2}" ]; then
- LogText "${FUNCNAME}: ${1} is less than ${2}"
- RETVAL=0
- fi
- fi
- return ${RETVAL}
- }
-
-
- ################################################################################
- # Name : TestCase_LessOrEqual()
- # Description : Test case for checking if value is less or equal something
- # Returns : (0 - SUCCESS; 1 - FAIL)
- ################################################################################
-
- TestCase_LessOrEqual() {
- RETVAL=1
- if [ "$#" -ne "2" ]; then
- ReportException "${TEST_NO}" "Error in function call to ${FUNCNAME}"
- else
- LogText "${FUNCNAME}: checking value for application ${APP}"
- LogText "${FUNCNAME}: ${OPTION} is set to ${1}"
- LogText "${FUNCNAME}: checking if ${1} is less or equal ${2}"
- if [ TestCase_Equal "${1}" "${2}" ] || [ TestCase_LessThan "${1}" "${2}" ]; then
- LogText "${FUNCNAME}: ${1} is less than ${2}"
- RETVAL=0
- fi
- fi
- return ${RETVAL}
- }
-
-
- ################################################################################
#
# Legacy functions - Do not use!
#
@@ -3530,42 +3370,6 @@
# steps. If they still get used, they will trigger errors on screen.
################################################################################
- counttests() {
- DisplayWarning "Deprecated function used (counttests)"
- if IsDeveloperMode; then Debug "Warning: old counttests function is used. Please replace any reference with CountTests."; fi
- CountTests
- }
-
- logtext() {
- DisplayWarning "Deprecated function used (logtext)"
- if IsDeveloperMode; then Debug "Warning: old logtext function is used. Please replace any reference with LogText."; fi
- LogText "$1"
- }
-
- logtextbreak() {
- DisplayWarning "Deprecated function used (logtextbreak)"
- if IsDeveloperMode; then Debug "Warning: old logtextbreak function is used. Please replace any reference with LogTextBreak."; fi
- LogTextBreak "$1"
- }
-
- report() {
- DisplayWarning "Deprecated function used (report)"
- if IsDeveloperMode; then Debug "Warning: old report function is used. Please replace any reference with Report."; fi
- Report "$1"
- }
-
- wait_for_keypress() {
- DisplayWarning "Deprecated function used (wait_for_keypress)"
- if IsDeveloperMode; then Debug "Warning: old wait_for_keypress function is used. Please replace any reference with WaitForKeyPress."; fi
- WaitForKeyPress
- }
-
- ShowResult() {
- DisplayWarning "Deprecated function used (ShowResult)"
- if IsDeveloperMode; then Debug "Warning: old ShowResult() function is used. Please replace any reference with WaitForKeyPress."; fi
- }
-
-
#================================================================================
# Lynis is part of Lynis Enterprise and released under GPLv3 license