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>2016-02-09 15:00:29 +0300
committermboelen <michael@cisofy.com>2016-02-09 15:00:29 +0300
commit820c24c347500547b55b721f488ee583a432ca4e (patch)
treef34015b0703d37b34e557341e809db4f370e2fdc /include/tests_networking
parent44752440e8fea880ef74357d79cdc5ab49a217ad (diff)
Added OpenBSD for [NETW-3004]
Diffstat (limited to 'include/tests_networking')
-rw-r--r--include/tests_networking4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tests_networking b/include/tests_networking
index 3c45678e..d250ebcb 100644
--- a/include/tests_networking
+++ b/include/tests_networking
@@ -208,7 +208,7 @@
#
# Test : NETW-3004
# Description : Find available network interfaces on FreeBSD and others
- Register --test-no NETW-3004 --weight L --network NO --description "Search available network interfaces on FreeBSD and others"
+ Register --test-no NETW-3004 --weight L --network NO --description "Search available network interfaces"
if [ ${SKIPTEST} -eq 0 ]; then
FIND=""
N=0
@@ -226,7 +226,7 @@
DragonFly|FreeBSD|NetBSD)
FIND=`${IFCONFIGBINARY} -l`
;;
- Solaris)
+ OpenBSD|Solaris)
FIND=`${IFCONFIGBINARY} -a | ${GREPBINARY} "flags=" | ${AWKBINARY} -F ": " '{ print $1 }'`
;;
*)