From c32d5a7dbaf4db571b2201779ffb30555428c148 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Mon, 13 Nov 2023 10:27:13 -0600 Subject: [PATCH] Update certs.inc --- inc/certs.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/inc/certs.inc b/inc/certs.inc index f63d75d3..60a9c9a1 100755 --- a/inc/certs.inc +++ b/inc/certs.inc @@ -281,7 +281,7 @@ LISTCERTS(){ while [ "${editc^}" != "E" ]; do echo -e "\033[K" echo -e "\033[K" - echo -e "\033[K (${idsCL[Green]}R${idsCL[Default]})eload, (${idsCL[Yellow]}E${idsCL[Default]})xit" + echo -e "\033[K (${idsCL[Green]}C${idsCL[Default]})reate New, (${idsCL[Green]}R${idsCL[Default]})eload, (${idsCL[Yellow]}E${idsCL[Default]})xit" echo -e "\033[K" echo -e "\033[K" echo -e "\033[K" @@ -294,6 +294,10 @@ LISTCERTS(){ echo -e "\033[K" exit 0 + elif [ "${certid^}" == "C" ]; then + NEWCERT + exit 0 + elif [ "${certid^}" == "R" ]; then [ "${SEARCH}" != "0" ] && LISTCERTS -edit -search ${SEARCH} || LISTCERTS -edit exit 0