From 29a33e5787f64492e6fbd3f4a49b573031557b89 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 1 Sep 2024 16:53:44 +0200 Subject: [PATCH] x509/grep --- spcd/bootstrap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spcd/bootstrap.sh b/spcd/bootstrap.sh index acbfe28..0df0ad6 100644 --- a/spcd/bootstrap.sh +++ b/spcd/bootstrap.sh @@ -225,7 +225,8 @@ spcd_openssl_x509() { if [ -f "${1}" ]; then openssl x509 \ -in "${1}" \ - -noout -text + -noout -text | + grep "\(After\|Before\|Issuer\|Signature A\|Subject:\)" fi }