This repository has been archived on 2022-01-23. You can view files and clone it, but cannot push or open issues or pull requests.
ssladmin/gen.serverclient.cert-serve...

7 lines
305 B
Bash

#!/bin/bash
set -e
echo "Generating certificate (${1}) (server certificate)..."
openssl ca -config ${rootdir}/intermediate/openssl.cnf -batch -days 3650 -extensions server_cert -notext -md sha512 -in ${rootdir}/csr/${1}.csr -out ${rootdir}/crt/${1}.crt > /dev/null 2>&1
chmod 444 ${rootdir}/crt/${1}.crt