Disabled Listing of Revoked Certs
This commit is contained in:
parent
dd5f3e15ed
commit
d5bd197cfc
1 changed files with 2 additions and 1 deletions
|
|
@ -1260,7 +1260,8 @@ while read -r line || [ -n "$line" ]; do
|
||||||
if [ "${STATUS}" == "V" ]; then
|
if [ "${STATUS}" == "V" ]; then
|
||||||
printf " Valid :: %s :: %s\\n" "$NAME" "$EXPD"
|
printf " Valid :: %s :: %s\\n" "$NAME" "$EXPD"
|
||||||
elif [ "${STATUS}" == "R" ]; then
|
elif [ "${STATUS}" == "R" ]; then
|
||||||
printf " Revoked :: %s :: %s\\n" "$NAME" "$EXPD"
|
#printf " Revoked :: %s :: %s\\n" "$NAME" "$EXPD"
|
||||||
|
continue
|
||||||
else
|
else
|
||||||
printf " Unknown :: %s :: %s\\n" "$NAME" "$EXPD"
|
printf " Unknown :: %s :: %s\\n" "$NAME" "$EXPD"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue