brent s
125919ee3a
TODO: add better standalone-script support (e.g. adding clients), conf support (so they all pull their variables from the same place), etc.
7 lines
305 B
Bash
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
|