From d5bd197cfcf8b0a24369d678383c596320f456c1 Mon Sep 17 00:00:00 2001 From: Swamy Goundar Date: Sat, 28 Mar 2020 20:22:35 -0700 Subject: [PATCH] Disabled Listing of Revoked Certs --- openvpn-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index b9a2275..40a942f 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -1260,7 +1260,8 @@ while read -r line || [ -n "$line" ]; do if [ "${STATUS}" == "V" ]; then printf " Valid :: %s :: %s\\n" "$NAME" "$EXPD" elif [ "${STATUS}" == "R" ]; then - printf " Revoked :: %s :: %s\\n" "$NAME" "$EXPD" + #printf " Revoked :: %s :: %s\\n" "$NAME" "$EXPD" + continue else printf " Unknown :: %s :: %s\\n" "$NAME" "$EXPD" fi