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:
authormboelen <michael@cisofy.com>2014-11-29 18:20:20 +0300
committermboelen <michael@cisofy.com>2014-11-29 18:20:20 +0300
commit33720a54ac40c5078c333225fa83b114bc3f58b5 (patch)
treefc4d4024fe3801947c693c3c9634712527492bda /include/tests_mail_messaging
parent8fccb0e35a432c18159a03546d62ce92ec64fd53 (diff)
Check for OpenSMTPD on all platforms, but only if smtpctl is found
Diffstat (limited to 'include/tests_mail_messaging')
-rw-r--r--include/tests_mail_messaging15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/tests_mail_messaging b/include/tests_mail_messaging
index c2d22f5e..39a2c377 100644
--- a/include/tests_mail_messaging
+++ b/include/tests_mail_messaging
@@ -28,7 +28,7 @@
POSTFIX_RUNNING=0
QMAIL_RUNNING=0
SENDMAIL_RUNNING=0
- SMTPD_RUNNING=0
+ OPENSMTPD_RUNNING=0
#
#################################################################################
#
@@ -221,19 +221,20 @@
#################################################################################
#
# Test : MAIL-8920
- # Description : Check OpenBSD smtpd process status
- Register --test-no MAIL-8920 --os OpenBSD --weight L --network NO --description "Check smtpd status"
+ # Description : Check OpenSMTPD process status
+ if [ ! "${SMTPCTL_BINARY}" = "" ]; then PREQS_MET="YES"; else PREQS_MET="NO"; fi
+ Register --test-no MAIL-8920 --preqs-met ${PREQS_MET} --weight L --network NO --description "Check OpenSMTPD status"
if [ ${SKIPTEST} -eq 0 ]; then
logtext "Test: check smtpd status"
FIND=`${PSBINARY} ax | grep "/smtpd" | grep -v "grep"`
if [ ! "${FIND}" = "" ]; then
logtext "Result: found running smtpd process"
- Display --indent 2 --text "- Checking OpenBSD smtpd status" --result RUNNING --color GREEN
- SMTPD_RUNNING=1
- SMTP_DAEMON="smtpd"
+ Display --indent 2 --text "- Checking OpenSMTPD status" --result RUNNING --color GREEN
+ OPENSMTPD_RUNNING=1
+ SMTP_DAEMON="opensmtpd"
else
logtext "Result: smtpd not found"
- Display --indent 2 --text "- Checking OpenBSD smtpd status" --result "NOT FOUND" --color WHITE
+ Display --indent 2 --text "- Checking OpenSMTPD status" --result "NOT FOUND" --color WHITE
fi
fi
#