diff options
| -rwxr-xr-x | make-certs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -7,6 +7,11 @@ set -e +if [[ ! -f `which openssl` ]]; then + echo "OpenSSL not found. Install it first, then run this script again." + exit 1 +fi + DOMAIN=xn--u4h.net DAYS=365 KEYTYPE=RSA |
