From 9acc5c2ff485e99ffda2a8e21c1cdc5cee931c2e Mon Sep 17 00:00:00 2001 From: Sebastian Tobie Date: Mon, 5 May 2025 08:06:49 +0200 Subject: [PATCH] added an prefix to prevent one ca overwriting an other --- release_pkg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release_pkg.sh b/release_pkg.sh index ff09301..6248d5a 100755 --- a/release_pkg.sh +++ b/release_pkg.sh @@ -18,7 +18,7 @@ download_certs() { if [ -n "$trust" ] ; then args+=" -addtrust ${trust}" fi - bao read -field=certificate "${ca}/issuer/${uuid}" | openssl x509 -out "${subdir}/${name}.pem" -setalias "${uuid}" ${args} + bao read -field=certificate "${ca}/issuer/${uuid}" | openssl x509 -out "${subdir}/${ca}-${name}.pem" -setalias "${uuid}" ${args} done }