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.
9 lines
396 B
Bash
9 lines
396 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Generating chain cert files (${1})..."
|
|
cat ${rootdir}/crt/${1}.crt ${rootdir}/intermediate/crt/intermediate-chained.crt > ${rootdir}/crt/${1}-chained.crt
|
|
#cat ${rootdir}/crt/${1}.user.crt ${rootdir}/intermediate/crt/intermediate-chained.crt > ${rootdir}/crt/${1}.user-chained.crt
|
|
chmod 444 ${rootdir}/crt/${1}-chained.crt
|
|
#chmod 444 ${rootdir}/crt/${1}.user-chained.crt
|