From 4bcd695428d7fb81e6ab8000a1d906b2e5043a7c Mon Sep 17 00:00:00 2001 From: Brian Ginsbach Date: Thu, 2 Apr 2020 15:59:11 -0500 Subject: [PATCH] AUTH-9268 Add DragonFly DragonFly also supports PAM. Rework to use the `--os` option of `Register` rather than `--preqs-met` as the former can support a list. --- include/tests_authentication | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/include/tests_authentication b/include/tests_authentication index d005882a..a0402042 100644 --- a/include/tests_authentication +++ b/include/tests_authentication @@ -817,13 +817,8 @@ # Test : AUTH-9268 # Description : Searching available PAM files # Notes : PAM is used on AIX, FreeBSD, Linux, HPUX, NetBSD, Solaris - case "${OS}" in - "AIX"|"FreeBSD"|"Linux"|"HPUX"|"NetBSD"|"Solaris") - PREQS_MET="YES" ;; - *) - PREQS_MET="NO" ;; - esac - Register --test-no AUTH-9268 --preqs-met ${PREQS_MET} --weight L --network NO --category security --description "Checking presence pam.d files" + OS_USES_PAM="AIX DragonFly FreeBSD Linux HPUX NetBSD Solaris" + Register --test-no AUTH-9268 --os "${OS_USES_PAM}" --weight L --network NO --category security --description "Checking presence pam.d files" if [ ${SKIPTEST} -eq 0 ]; then FOUND=0 LogText "Test: Searching pam modules"