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
|