change makecers.sh mode

This commit is contained in:
olszomal 2022-07-21 12:13:24 +02:00 committed by Michał Trojnara
parent 88bf99dec8
commit 26b7d5f617
3 changed files with 5 additions and 5 deletions

View File

@ -40,10 +40,10 @@ if(NOT CMAKE_HOST_WIN32)
else() else()
set(makecerts_result 1) set(makecerts_result 1)
endif() endif()
if(makecerts_result) if(makecerts_result)
message(STATUS "makecerts.sh failed")
if(makecerts_output) if(makecerts_output)
message(STATUS "makecerts.sh failed: ${makecerts_output}") message(STATUS "${makecerts_output}")
endif() endif()
file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/tests/certs" file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/tests/certs"
DESTINATION "${PROJECT_BINARY_DIR}/Testing" DESTINATION "${PROJECT_BINARY_DIR}/Testing"

View File

@ -1 +0,0 @@
7f6f24f728adda6a80c55f00607e8ad9

5
tests/conf/makecerts.sh Normal file → Executable file
View File

@ -37,7 +37,7 @@ make_certs() {
echo 1001 > "CA/crlnumber" echo 1001 > "CA/crlnumber"
date > "makecerts.log" date > "makecerts.log"
"$OPENSSL" version 2>> "makecerts.log" 1>&2 "$OPENSSL" version 2>> "makecerts.log" 1>&2
echo -n "$password" > "password.txt" echo -n "$password" > tmp/password.txt
printf "\nGenerate root CA certificate\n" >> "makecerts.log" printf "\nGenerate root CA certificate\n" >> "makecerts.log"
"$OPENSSL" genrsa -out CA/CA.key \ "$OPENSSL" genrsa -out CA/CA.key \
@ -231,7 +231,8 @@ make_certs() {
-a -s tmp/crosscert.pem -a -s tmp/expired.pem -a -s tmp/revoked.pem -a -s tmp/revoked.spc \ -a -s tmp/crosscert.pem -a -s tmp/expired.pem -a -s tmp/revoked.pem -a -s tmp/revoked.spc \
-a -s tmp/TSA.pem -a -s tmp/TSA.key -a -s tmp/tsa-chain.pem -a -s tmp/TSA.pem -a -s tmp/TSA.key -a -s tmp/tsa-chain.pem
then then
cp tmp/* ./ mkdir "../certs"
cp tmp/* ../certs
printf "%s" "keys & certificates successfully generated" printf "%s" "keys & certificates successfully generated"
else else
printf "%s" "error logs ${result_path}/makecerts.log" printf "%s" "error logs ${result_path}/makecerts.log"