Test certs are now simply embedded

This commit is contained in:
Johannes Zellner
2015-10-28 16:34:09 +01:00
parent 7798111af1
commit 9df9d1667f
@@ -1,11 +0,0 @@
#!/bin/bash
set -eu -o pipefail
CRT="/tmp/test.crt";
KEY="/tmp/test.key";
CSR="/tmp/test.csr";
openssl genrsa 2048 > $KEY
openssl req -new -key $KEY -out $CSR -subj "/C=DE/ST=Berlin/L=Berlin/O=Cloudron/OU=Dev/CN=test.cloudron.io"
openssl x509 -req -days 365 -in $CSR -signkey $KEY -out $CRT