From 79b6eef324780de01ba73a1b59f0c823fdcb1b32 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 17 Jul 2026 10:57:08 +0200 Subject: [PATCH] fix for macOS for import via mobileconfig macOS wants a password and needs the '-legacy' option --- create_client.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_client.sh b/create_client.sh index 0ef98a8..03583ec 100755 --- a/create_client.sh +++ b/create_client.sh @@ -52,6 +52,6 @@ openssl x509 \ # create pkcs12 file for windows import -openssl pkcs12 -export -in "$client".cert.pem -inkey "$client".key.pem -out "$client".p12 -name "$client" -passout pass: +openssl pkcs12 -export -in "$client".cert.pem -inkey "$client".key.pem -out "$client".p12 -name "$client" -passout pass:0000 -legacy rm *.tmp